height property
double
get
height
Implementation
double get height {
switch (this) {
case small:
return 32.0;
case regular:
return 40.0;
default:
return 48.0;
}
}
double get height {
switch (this) {
case small:
return 32.0;
case regular:
return 40.0;
default:
return 48.0;
}
}