Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

list join dart

List<String> yourList = ["20", "3005", "2"];

// To test that the above the above
yourList.join() == '2030052';     // true
yourList.join(',') == '20,3005,2'; // true, with "," delimiter
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #list #join #dart
ADD COMMENT
Topic
Name
9+4 =