in this tutorial we're simply going to discuss Build In Data Types in dart and in this ep we r going to look over list types of data in dart which is often referred as array in other programming languages ..
List is an indexable collection of objects which has fixed length and there's two types of list ( growable list & fixed list ) ..
Growable list is a type of list which length is dynamic , it means the length of data stored in list may change ( increase/decrease )..
On the other hand fixed list is sunch types of list which we define it ststically which means we declare one list variable and we store data in the list which cannot be changed for its whole lifetime ...
Such lists have fixed length ..