RestrictedExportPolicy.fromJson constructor
RestrictedExportPolicy.fromJson(
- Map json_
Implementation
RestrictedExportPolicy.fromJson(core.Map json_)
: this(
enabled: json_.containsKey('enabled')
? json_['enabled'] as core.bool
: null,
restrictDirectTableAccess:
json_.containsKey('restrictDirectTableAccess')
? json_['restrictDirectTableAccess'] as core.bool
: null,
restrictQueryResult: json_.containsKey('restrictQueryResult')
? json_['restrictQueryResult'] as core.bool
: null,
);