PaymentSession.fromJson constructor

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

Implementation

PaymentSession.fromJson(Map<String, dynamic> json) {
  gid = json["gid"];
  psClientSecret = json["psClientSecret"];
  nextActionUrl = json["nextActionUrl"];
  errorDescription = json["errorDescription"];
  status = json["status"];
}