NetworkInterface.fromJson constructor

NetworkInterface.fromJson(
  1. Map json_
)

Implementation

NetworkInterface.fromJson(core.Map json_)
    : this(
        network: json_['network'] as core.String?,
        noExternalIpAddress: json_['noExternalIpAddress'] as core.bool?,
        subnetwork: json_['subnetwork'] as core.String?,
      );