deviceMobileSpeaker static method

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

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

Implementation

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