megaphoneSimple static method

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

regular: megaphone-simple thin: megaphone-simple light: megaphone-simple bold: megaphone-simple fill: megaphone-simple duotone: megaphone-simple

Implementation

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