ResponseError constructor

const ResponseError({
  1. required String? code,
  2. required String message,
  3. String? param,
})

Implementation

const ResponseError({
  required this.code,
  required this.message,
  this.param,
});