ApiResponseModel constructor

ApiResponseModel({
  1. bool success = true,
  2. List<Error> errors = const [],
  3. String message = '',
  4. String data = '',
})

Implementation

ApiResponseModel({
  this.success = true,
  this.errors = const [],
  this.message = '',
  this.data = '',
});