Wm Leler·Follow1 min read·Jul 5, 2018--ListenShareIn Dart, var just means that you are letting type inference determine the type of a variable. You never have to use var, you can always specify the type explicitly. For example:var foo = “bar”;is exactly the same thing as:String foo = “bar”;