OctobaseResponse<T> constructor

OctobaseResponse<T>({
  1. int? statusCode,
  2. String? statusMessage,
  3. required T? data,
  4. Response? response,
  5. Headers? headers,
  6. bool isError = false,
})

Implementation

OctobaseResponse({
  this.statusCode,
  this.statusMessage,
  required this.data,
  this.response,
  this.headers,
  this.isError = false,
});