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_['recursiveStructureDepth'] as core.String?,
schemaType: json_['schemaType'] as core.String?,
);