toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final avro = this.avro;
final csv = this.csv;
final orc = this.orc;
final parquet = this.parquet;
final protobuf = this.protobuf;
final thrift = this.thrift;
return {
'avro': ?avro,
'csv': ?csv,
'orc': ?orc,
'parquet': ?parquet,
'protobuf': ?protobuf,
'thrift': ?thrift,
};
}