SendDataResult constructor

SendDataResult({
  1. required bool success,
  2. Map<String, dynamic>? error,
  3. DeviceData? data,
  4. Map<String, dynamic>? response,
  5. int? duration,
  6. required int attempts,
  7. bool retryable = false,
})

Implementation

SendDataResult({
  required this.success,
  this.error,
  this.data,
  this.response,
  this.duration,
  required this.attempts,
  this.retryable = false,
});