Default Constructor



Last updated



Last updated
void main() {
var employee1 = Employee();
}
class Employee{
int id;
String firstname;
String lastname;
String position;
int number_of_day_worked;
// Looks like a function , but not a function
//Default Constructor
Employee(){
print("A Default constructor constructing a object");
}
}