ManagedZoneServiceDirectoryConfigNamespace.fromJson constructor

ManagedZoneServiceDirectoryConfigNamespace.fromJson(
  1. Map json_
)

Implementation

ManagedZoneServiceDirectoryConfigNamespace.fromJson(core.Map json_)
    : this(
        deletionTime: json_.containsKey('deletionTime')
            ? json_['deletionTime'] as core.String
            : null,
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
        namespaceUrl: json_.containsKey('namespaceUrl')
            ? json_['namespaceUrl'] as core.String
            : null,
      );