Line data Source code
1 : extension ExtendedStringList on List<String> { 2 1 : void printEachWithQuotes([ 3 : String quote = '"', 4 : ]) { 5 2 : for (final str in this) { 6 2 : // ignore: avoid_print 7 : print('$quote$str$quote'); 8 : } 9 : } 10 : }