iconSize method
To retrieve the size of the icon/avatar according to the type of size
Implementation
double iconSize() {
switch (this) {
case small:
return 16;
case large:
return 24;
}
}
To retrieve the size of the icon/avatar according to the type of size
double iconSize() {
switch (this) {
case small:
return 16;
case large:
return 24;
}
}