GoogleChromeManagementV1NetworkInfo.fromJson constructor

GoogleChromeManagementV1NetworkInfo.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1NetworkInfo.fromJson(core.Map json_)
    : this(
        networkDevices: json_.containsKey('networkDevices')
            ? (json_['networkDevices'] as core.List)
                .map((value) =>
                    GoogleChromeManagementV1NetworkDevice.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );