SchemaConfig.fromJson constructor

SchemaConfig.fromJson(
  1. 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?,
      );