AccountIdentifier.fromJson constructor

AccountIdentifier.fromJson(
  1. Map json_
)

Implementation

AccountIdentifier.fromJson(core.Map json_)
    : this(
        aggregatorId: json_.containsKey('aggregatorId')
            ? json_['aggregatorId'] as core.String
            : null,
        merchantId: json_.containsKey('merchantId')
            ? json_['merchantId'] as core.String
            : null,
      );