CashPaymentResponse.fromJson constructor

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

Implementation

factory CashPaymentResponse.fromJson(Map<String, dynamic> json) =>
    CashPaymentResponse(
      data: json["data"] == null ? null : Data.fromJson(json["data"]),
      lastAction: json["last_action"],
      success: json["success"],
      textResponse: json["text_response"],
      titleResponse: json["title_response"],
    );