NetworkAddress.fromJson constructor

NetworkAddress.fromJson(
  1. Map json_
)

Implementation

NetworkAddress.fromJson(core.Map json_)
    : this(
        address: json_.containsKey('address')
            ? json_['address'] as core.String
            : null,
        existingNetworkId: json_.containsKey('existingNetworkId')
            ? json_['existingNetworkId'] as core.String
            : null,
        networkId: json_.containsKey('networkId')
            ? json_['networkId'] as core.String
            : null,
      );