ResponseBodyApi<T> constructor

ResponseBodyApi<T>({
  1. bool? success,
  2. String? code,
  3. String? message,
  4. T? data,
})

Implementation

ResponseBodyApi({
  this.success,
  this.code,
  this.message,
  this.data,
});