RowAccessPolicyReference.fromJson constructor
RowAccessPolicyReference.fromJson(
- Map json_
Implementation
RowAccessPolicyReference.fromJson(core.Map json_)
: this(
datasetId: json_.containsKey('datasetId')
? json_['datasetId'] as core.String
: null,
policyId: json_.containsKey('policyId')
? json_['policyId'] as core.String
: null,
projectId: json_.containsKey('projectId')
? json_['projectId'] as core.String
: null,
tableId: json_.containsKey('tableId')
? json_['tableId'] as core.String
: null,
);