ParquetOptions.fromJson constructor

ParquetOptions.fromJson(
  1. Map json_
)

Implementation

ParquetOptions.fromJson(core.Map json_)
    : this(
        enableListInference: json_.containsKey('enableListInference')
            ? json_['enableListInference'] as core.bool
            : null,
        enumAsString: json_.containsKey('enumAsString')
            ? json_['enumAsString'] as core.bool
            : null,
        mapTargetType: json_.containsKey('mapTargetType')
            ? json_['mapTargetType'] as core.String
            : null,
      );