flutter contrunctor create variable code example
Example: fluter class constructor
class Customer {
String name;
int age;
String location;
// constructor
Customer(String name, int age, String location) {
this.name = name;
this.age = age;
this.location = location;
}
}