FirmwareRebootReply constructor

const FirmwareRebootReply({
  1. required int byteCount,
  2. String? destination,
  3. List<int> errorCodes = const <int>[],
})

Implementation

const FirmwareRebootReply({
  required this.byteCount,
  this.destination,
  this.errorCodes = const <int>[],
});