PGPaymentStatusResponse.fromJson constructor

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

Implementation

factory PGPaymentStatusResponse.fromJson(Map<String, dynamic> json) => PGPaymentStatusResponse(
  success: json["success"],
  code: json["code"],
  message: json["message"],
  data: Data.fromJson(json["data"]),
);