Subnet.fromJson constructor

Subnet.fromJson(
  1. Map json_
)

Implementation

Subnet.fromJson(core.Map json_)
    : this(
        gatewayIp: json_['gatewayIp'] as core.String?,
        ipCidrRange: json_['ipCidrRange'] as core.String?,
        name: json_['name'] as core.String?,
        state: json_['state'] as core.String?,
        type: json_['type'] as core.String?,
        vlanId: json_['vlanId'] as core.int?,
      );