toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final mongodbExcludedObjects = this.mongodbExcludedObjects;
  final mysqlExcludedObjects = this.mysqlExcludedObjects;
  final oracleExcludedObjects = this.oracleExcludedObjects;
  final postgresqlExcludedObjects = this.postgresqlExcludedObjects;
  final salesforceExcludedObjects = this.salesforceExcludedObjects;
  final spannerExcludedObjects = this.spannerExcludedObjects;
  final sqlServerExcludedObjects = this.sqlServerExcludedObjects;
  return {
    'mongodbExcludedObjects': ?mongodbExcludedObjects,
    'mysqlExcludedObjects': ?mysqlExcludedObjects,
    'oracleExcludedObjects': ?oracleExcludedObjects,
    'postgresqlExcludedObjects': ?postgresqlExcludedObjects,
    'salesforceExcludedObjects': ?salesforceExcludedObjects,
    'spannerExcludedObjects': ?spannerExcludedObjects,
    'sqlServerExcludedObjects': ?sqlServerExcludedObjects,
  };
}