BulkTransferSetupResult constructor

const BulkTransferSetupResult({
  1. required int txType,
  2. required String destination,
  3. required int totalSizeBytes,
  4. required bool toHub,
  5. int? txSubType,
  6. String? partnerUid,
  7. int? totalCrc32,
  8. List<int> errorCodes = const <int>[],
})

Implementation

const BulkTransferSetupResult({
  required this.txType,
  required this.destination,
  required this.totalSizeBytes,
  required this.toHub,
  this.txSubType,
  this.partnerUid,
  this.totalCrc32,
  this.errorCodes = const <int>[],
});