CreatePaymentModel constructor

CreatePaymentModel({
  1. bool? success,
  2. int? code,
  3. String? description,
  4. Data? data,
})

Implementation

CreatePaymentModel({
  this.success,
  this.code,
  this.description,
  this.data,
});