toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final binaryLogParser = this.binaryLogParser;
  final dropLargeObjects = this.dropLargeObjects;
  final excludeObjects = this.excludeObjects;
  final includeObjects = this.includeObjects;
  final logMiner = this.logMiner;
  final maxConcurrentBackfillTasks = this.maxConcurrentBackfillTasks;
  final maxConcurrentCdcTasks = this.maxConcurrentCdcTasks;
  final streamLargeObjects = this.streamLargeObjects;
  return {
    'binaryLogParser': ?binaryLogParser,
    'dropLargeObjects': ?dropLargeObjects,
    'excludeObjects': ?excludeObjects,
    'includeObjects': ?includeObjects,
    'logMiner': ?logMiner,
    'maxConcurrentBackfillTasks': ?maxConcurrentBackfillTasks,
    'maxConcurrentCdcTasks': ?maxConcurrentCdcTasks,
    'streamLargeObjects': ?streamLargeObjects,
  };
}