toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (binaryLogParser != null) 'binaryLogParser': binaryLogParser!,
  if (dropLargeObjects != null) 'dropLargeObjects': dropLargeObjects!,
  if (excludeObjects != null) 'excludeObjects': excludeObjects!,
  if (includeObjects != null) 'includeObjects': includeObjects!,
  if (logMiner != null) 'logMiner': logMiner!,
  if (maxConcurrentBackfillTasks != null)
    'maxConcurrentBackfillTasks': maxConcurrentBackfillTasks!,
  if (maxConcurrentCdcTasks != null)
    'maxConcurrentCdcTasks': maxConcurrentCdcTasks!,
  if (streamLargeObjects != null) 'streamLargeObjects': streamLargeObjects!,
};