ErrorDetails constructor

const ErrorDetails({
  1. String? domain,
  2. String? reason,
  3. String? message,
})

Default constructor

Implementation

const factory ErrorDetails({
  /// The domain in which the error occured
  String? domain,

  /// The reason for the error
  String? reason,

  /// The error message / code
  String? message,
}) = _ErrorDetails;