PayUOrderResponse.fromJson constructor

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

Implementation

PayUOrderResponse.fromJson(Map<String, dynamic> json)
    : status = PayUOrderResponseStatus.fromJson(json['status']),
      redirectUri = json['redirectUri'],
      orderId = json['orderId'],
      extOrderId = json['extOrderId'];