combine static method Null safety

String combine(
  1. List<MigrationSource> sources
)

Implementation

static String combine(List<MigrationSource> sources) {
  return sources.map((s) => s.source).join("\n");
}