deviceTablet property

AppIconData get deviceTablet

regular: device-tablet thin: device-tablet light: device-tablet bold: device-tablet fill: device-tablet duotone: device-tablet

Implementation

static AppIconData get deviceTablet {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.deviceTablet;
    case AppIconsStyle.thin:
      return AppIconsThin.deviceTablet;
    case AppIconsStyle.light:
      return AppIconsLight.deviceTablet;
    case AppIconsStyle.bold:
      return AppIconsBold.deviceTablet;
    case AppIconsStyle.fill:
      return AppIconsFill.deviceTablet;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.deviceTablet;
  }
}