CheckStatusResponse.fromJson constructor

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

Implementation

factory CheckStatusResponse.fromJson(Map<String, dynamic> json) =>
    CheckStatusResponse(paymentStatus: List<PaymentStatus>.from(json["PaymentStatus"].map((x) => PaymentStatus.fromJson(x))));