NetworkProfileLocation.fromJson constructor

NetworkProfileLocation.fromJson(
  1. Map json_
)

Implementation

NetworkProfileLocation.fromJson(core.Map json_)
  : this(
      name: json_['name'] as core.String?,
      scope: json_['scope'] as core.String?,
    );