paymentGateWayFromJson function

List<PaymentGateWay> paymentGateWayFromJson(
  1. String str
)

Implementation

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