ResponseModel<T> constructor

ResponseModel<T>({
  1. T? data,
  2. String? message,
  3. bool success = true,
  4. int? statusCode,
  5. Map<String, dynamic>? meta,
})

Implementation

ResponseModel({
  this.data,
  this.message,
  this.success = true,
  this.statusCode,
  this.meta,
});