iconSize method

double iconSize()

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;
  }
}