toJson method

Map<String, dynamic> toJson()

Implementation

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