ApiResponse<T> constructor

ApiResponse<T>({
  1. T? body,
  2. String? result,
  3. String? message,
})

Implementation

ApiResponse({
  this.body,
  this.result,
  this.message,
});