AllowedIpRange.fromJson constructor

AllowedIpRange.fromJson(
  1. Map json_
)

Implementation

AllowedIpRange.fromJson(core.Map json_)
    : this(
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );