StopLogStreamCommand constructor

StopLogStreamCommand({
  1. String? id,
  2. DateTime? timestamp,
})

Implementation

StopLogStreamCommand({
  String? id,
  DateTime? timestamp,
}) : super(
        id: id,
        payload: _toPayload(),
        timestamp: timestamp,
        type: kCommandType,
      );