paymentGateWayFromJson function
Implementation
List<PaymentGateWay> paymentGateWayFromJson(String str) =>
List<PaymentGateWay>.from(
json.decode(str).map((x) => PaymentGateWay.fromJson(x)));
List<PaymentGateWay> paymentGateWayFromJson(String str) =>
List<PaymentGateWay>.from(
json.decode(str).map((x) => PaymentGateWay.fromJson(x)));