AllowedIpRange.fromJson constructor

AllowedIpRange.fromJson(
  1. Map json_
)

Implementation

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