Specify types for class member
Always specify the type of member when its value type is known. Avoid using var when possible.
Do
int item = 10; final Car bar = Car(); String name = 'john'; const int timeOut = 20;
Don't
var item = 10; final car = Car(); const timeOut = 2000;