Error constructor

Error({
  1. required String traceId,
  2. String? title,
  3. String? subtitle,
  4. String? message,
  5. String? originalMessage,
  6. String? messageStatus,
  7. String? hash,
  8. String? buildHash,
  9. String? networkType,
  10. String? carrier,
  11. String? ip,
  12. String? locale,
  13. bool? gpsEnabled,
})

Implementation

Error({
  required this.traceId,
  this.title,
  this.subtitle,
  this.message,
  this.originalMessage,
  this.messageStatus,
  this.hash,
  this.buildHash,
  this.networkType,
  this.carrier,
  this.ip,
  this.locale,
  this.gpsEnabled,
});