CustomerPaymentResponse constructor

CustomerPaymentResponse({
  1. int? status,
  2. String? message,
  3. CustomerPaymentData? data,
})

Implementation

CustomerPaymentResponse({
    this.status,
    this.message,
    this.data,});