deviceMobile static method

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

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

Implementation

static PhosphorIconData deviceMobile(
    [PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
  switch (style) {
    case PhosphorIconsStyle.regular:
      return PhosphorIconsRegular.deviceMobile;
    case PhosphorIconsStyle.thin:
      return PhosphorIconsThin.deviceMobile;
    case PhosphorIconsStyle.light:
      return PhosphorIconsLight.deviceMobile;
    case PhosphorIconsStyle.bold:
      return PhosphorIconsBold.deviceMobile;
    case PhosphorIconsStyle.fill:
      return PhosphorIconsFill.deviceMobile;
    case PhosphorIconsStyle.duotone:
      return PhosphorIconsDuotone.deviceMobile;
  }
}