-
Notifications
You must be signed in to change notification settings - Fork 0
/
OOP.dart
53 lines (46 loc) · 824 Bytes
/
OOP.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
void main() {
Welocome();
Car c = Car();
Bus b = Bus();
Bike bi = Bike();
Truck t = Truck();
serviceCentre(c);
serviceCentre(b);
serviceCentre(bi);
serviceCentre(t);
}
Welocome() {
print("Welcome To Toyota Service Center");
}
serviceCentre(Vehicle vehc) {
vehc.doService();
}
class Vehicle {
doService() {
print('Vehicle is Servicing...');
}
}
class Car extends Vehicle {
@override
doService() {
print('Car is Servicing...');
}
}
class Bus extends Vehicle {
@override
doService() {
print('Bus is Servicing...');
}
}
class Truck extends Vehicle {
@override
doService() {
print('Truck is Servicing...');
}
}
class Bike extends Vehicle {
@override
doService() {
print('Bike is Servicing...');
}
}