deviceMobileSlash static method

PhosphorIconData deviceMobileSlash([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

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 PhosphorIconData deviceMobileSlash(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.deviceMobileSlash;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.deviceMobileSlash;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.deviceMobileSlash;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.deviceMobileSlash;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.deviceMobileSlash;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.deviceMobileSlash;
  }
}