toJson method

Map<String, dynamic> toJson()

Implementation

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