Answers for "dart list of maps"

1

dart list of maps

var orderLines = <Map>[]; // creates an empty List<Map>

orderLines.add({ 'number'  : '',
              'Item' : '',
              'Qty'  : ''
             });
Posted by: Guest on October-25-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language