buildRead static method Null safety

Command buildRead(
  1. String channelUrl
)

Implementation

static Command buildRead(String channelUrl) {
  return Command(
    cmd: CommandString.read,
    payload: {
      'channel_url': channelUrl,
    },
  );
}