Answers for "list of object in flutter"

0

list in dart

main(List<String> args) {
  //Syntax : List<ValuesDataType> ListName = [Values]
  List<int> x = [10, 20, 30, 50, 70, 90];

  //? printing specific value : print (ListNameHere[ItsArrangeStartFrom0]);
  //! example
  print(x[0]);

  //? printing the whole list : print (ListName)
  print(x);

  //? calculate list values :
  //! example 
  print(x[0] * x[5]);

  //? to add a new value to the list use <ListName>.add(Value);
  //! example 
  x.add(155);
}
Posted by: Guest on August-06-2021

Code answers related to "list of object in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language