ResponsePayload constructor

ResponsePayload({
  1. dynamic data,
  2. String? errorCode,
  3. String? errorMessage,
  4. required bool success,
  5. required String traceID,
})

Implementation

ResponsePayload({
  this.data,
  this.errorCode,
  this.errorMessage,
  required this.success,
  required this.traceID,
});