GoogleCloudDatacatalogV1StorageProperties.fromJson constructor
GoogleCloudDatacatalogV1StorageProperties.fromJson(
- Map json_
Implementation
GoogleCloudDatacatalogV1StorageProperties.fromJson(core.Map json_)
: this(
filePattern: json_.containsKey('filePattern')
? (json_['filePattern'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
fileType: json_.containsKey('fileType')
? json_['fileType'] as core.String
: null,
);