toJson method

Map<String, dynamic> toJson()

Implementation

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