SchemaConfig.fromJson constructor
SchemaConfig.fromJson(
- Map json_
Implementation
SchemaConfig.fromJson(core.Map json_)
: this(
lastUpdatedPartitionConfig: json_
.containsKey('lastUpdatedPartitionConfig')
? TimePartitioning.fromJson(json_['lastUpdatedPartitionConfig']
as core.Map<core.String, core.dynamic>)
: null,
recursiveStructureDepth: json_.containsKey('recursiveStructureDepth')
? json_['recursiveStructureDepth'] as core.String
: null,
schemaType: json_.containsKey('schemaType')
? json_['schemaType'] as core.String
: null,
);