PaymentDetailsModel constructor

PaymentDetailsModel({
  1. String? status,
  2. String? message,
  3. double? timeStamp,
  4. PaymentDetailsDataModel? data,
  5. String? requestId,
  6. String? correlationId,
  7. int? code,
  8. List<ErrorModel>? errors,
})

Implementation

PaymentDetailsModel(
    {this.status,
    this.message,
    this.timeStamp,
    this.data,
    this.requestId,
    this.correlationId,
    this.code,
    this.errors});