deviceMobile property

AppIconData get deviceMobile

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

Implementation

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