AuthorizedView.fromJson constructor

AuthorizedView.fromJson(
  1. Map json_
)

Implementation

AuthorizedView.fromJson(core.Map json_)
    : this(
        deletionProtection: json_.containsKey('deletionProtection')
            ? json_['deletionProtection'] as core.bool
            : null,
        etag: json_.containsKey('etag') ? json_['etag'] as core.String : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        subsetView: json_.containsKey('subsetView')
            ? GoogleBigtableAdminV2AuthorizedViewSubsetView.fromJson(
                json_['subsetView'] as core.Map<core.String, core.dynamic>)
            : null,
      );