toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (cloudSql != null) 'cloudSql': cloudSql!,
  if (database != null) 'database': database!,
  if (ephemeral != null) 'ephemeral': ephemeral!,
  if (schemaMigration != null) 'schemaMigration': schemaMigration!,
  if (schemaValidation != null) 'schemaValidation': schemaValidation!,
  if (unlinked != null) 'unlinked': unlinked!,
};