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