DatastoreNetwork.fromJson constructor

DatastoreNetwork.fromJson(
  1. Map json_
)

Implementation

DatastoreNetwork.fromJson(core.Map json_)
  : this(
      connectionCount: json_['connectionCount'] as core.int?,
      mtu: json_['mtu'] as core.int?,
      networkPeering: json_['networkPeering'] as core.String?,
      subnet: json_['subnet'] as core.String?,
    );