smallIcon property

double get smallIcon

Implementation

double get smallIcon {
  switch (screenType) {
    case DeviceScreenType.mobile:
      return 14;
    case DeviceScreenType.tablet:
    case DeviceScreenType.desktop:
      return 16;
  }
}