toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (mongodbSourceConfig != null)
    'mongodbSourceConfig': mongodbSourceConfig!,
  if (mysqlSourceConfig != null) 'mysqlSourceConfig': mysqlSourceConfig!,
  if (oracleSourceConfig != null) 'oracleSourceConfig': oracleSourceConfig!,
  if (postgresqlSourceConfig != null)
    'postgresqlSourceConfig': postgresqlSourceConfig!,
  if (salesforceSourceConfig != null)
    'salesforceSourceConfig': salesforceSourceConfig!,
  if (sourceConnectionProfile != null)
    'sourceConnectionProfile': sourceConnectionProfile!,
  if (sqlServerSourceConfig != null)
    'sqlServerSourceConfig': sqlServerSourceConfig!,
};