VerifyPaymentResponse.fromJson constructor

VerifyPaymentResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory VerifyPaymentResponse.fromJson(Map<String, dynamic> json) =>
    VerifyPaymentResponse(
      status: json["status"] ?? "",
      transactionId: json["transaction_id"] ?? "",
    );