SubnetworkSecondaryRange.fromJson constructor

SubnetworkSecondaryRange.fromJson(
  1. Map json_
)

Implementation

SubnetworkSecondaryRange.fromJson(core.Map json_)
  : this(
      ipCidrRange: json_['ipCidrRange'] as core.String?,
      ipCollection: json_['ipCollection'] as core.String?,
      ipVersion: json_['ipVersion'] as core.String?,
      rangeName: json_['rangeName'] as core.String?,
      reservedInternalRange: json_['reservedInternalRange'] as core.String?,
    );