TrayRequestResponse<ResultType> constructor

TrayRequestResponse<ResultType>({
  1. TrayRequestError? error,
  2. dynamic dataRaw,
  3. ResultType? data,
})

Implementation

TrayRequestResponse({
  this.error,
  this.dataRaw,
  this.data,
});