ErrorResponse constructor

const ErrorResponse({
  1. required String code,
  2. required String message,
  3. Map<String, dynamic>? details,
})

Implementation

const ErrorResponse({
  required this.code,
  required this.message,
  this.details,
});