FailureResponse constructor

FailureResponse({
  1. String? message,
  2. String? error,
  3. Map<String, dynamic>? response,
  4. String? version,
  5. String? code,
})

Implementation

FailureResponse({
  this.message,
  this.error,
  this.response,
  this.version,
  this.code,
});