FirmwareUpdateSetupReply constructor

const FirmwareUpdateSetupReply({
  1. required int txType,
  2. required int totalSizeBytes,
  3. String? destination,
  4. int? payloadCrc32,
  5. List<int> errorCodes = const <int>[],
})

Implementation

const FirmwareUpdateSetupReply({
  required this.txType,
  required this.totalSizeBytes,
  this.destination,
  this.payloadCrc32,
  this.errorCodes = const <int>[],
});