ChannelCommand constructor

ChannelCommand({
  1. required String channelId,
  2. String? commandId,
  3. DateTime? timestamp,
  4. Map<String, dynamic>? metadata,
})

Implementation

ChannelCommand({
  required this.channelId,
  String? commandId,
  DateTime? timestamp,
  Map<String, dynamic>? metadata,
}) : super(
        commandId: commandId,
        timestamp: timestamp,
        metadata: metadata,
      );