toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (mongodbExcludedObjects != null)
    'mongodbExcludedObjects': mongodbExcludedObjects!,
  if (mysqlExcludedObjects != null)
    'mysqlExcludedObjects': mysqlExcludedObjects!,
  if (oracleExcludedObjects != null)
    'oracleExcludedObjects': oracleExcludedObjects!,
  if (postgresqlExcludedObjects != null)
    'postgresqlExcludedObjects': postgresqlExcludedObjects!,
  if (salesforceExcludedObjects != null)
    'salesforceExcludedObjects': salesforceExcludedObjects!,
  if (sqlServerExcludedObjects != null)
    'sqlServerExcludedObjects': sqlServerExcludedObjects!,
};