dart class
class Car {
// field
String engine = "E1001";
// function
void disp() {
print(engine);
}
}
dart class
class Car {
// field
String engine = "E1001";
// function
void disp() {
print(engine);
}
}
dart class
// entry point
void main(){
// using the Dog class - creating an instance of this class
var myDog = Dog();
// assigning values to the newly clreated instance
myDog.breed = 'Poodle';
myDog.name = 'Jack';
myDog.color = 'Brown';
// displaying the values on the console
print(myDog.breed);
print(myDog.name);
print(myDog.color);
}
// Dog class
class Dog{
// class properties
String breed;
String name;
String color;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us