MmAppError constructor

MmAppError({
  1. int? statusCode,
  2. String? id,
  3. String? message,
  4. String? requestId,
})

Returns a new MmAppError instance.

Implementation

MmAppError({
  this.statusCode,
  this.id,
  this.message,
  this.requestId,
});