toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final avroFileFormat = this.avroFileFormat;
  final fileRotationInterval = this.fileRotationInterval;
  final fileRotationMb = this.fileRotationMb;
  final jsonFileFormat = this.jsonFileFormat;
  final path = this.path;
  return {
    'avroFileFormat': ?avroFileFormat,
    'fileRotationInterval': ?fileRotationInterval,
    'fileRotationMb': ?fileRotationMb,
    'jsonFileFormat': ?jsonFileFormat,
    'path': ?path,
  };
}