RouterAdvertisedIpRange.fromJson constructor

RouterAdvertisedIpRange.fromJson(
  1. Map json_
)

Implementation

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