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);
}