GoodbyeCommand constructor

GoodbyeCommand(
  1. {bool complete = false,
  2. String? id,
  3. DateTime? timestamp}
)

Implementation

GoodbyeCommand({
  this.complete = false,
  String? id,
  DateTime? timestamp,
}) : super(
        id: id,
        payload: _toPayload(
          complete: complete,
        ),
        timestamp: timestamp,
        type: kCommandType,
      );