deviceMobileSlash property

AppIconData get deviceMobileSlash

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

Implementation

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