MerchantAccountInformationValue.fromJson constructor

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

Implementation

factory MerchantAccountInformationValue.fromJson(Map<String, dynamic> json) =>
    MerchantAccountInformationValue(
      globallyUniqueIdentifier:
          TLVModel.fromJson(json["globallyUniqueIdentifier"]),
      paymentNetworkSpecific: List<TLVModel>.from(
          json["paymentNetworkSpecific"].map((x) => TLVModel.fromJson(x))),
    );