CowpayResponseModel<T> constructor

CowpayResponseModel<T>({
  1. int? statusCode,
  2. int? operationStatus,
  3. String? operationMessage,
  4. T? data,
})

Implementation

CowpayResponseModel({
  this.statusCode,
  this.operationStatus,
  this.operationMessage,
  this.data,
});