earSlash static method

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

regular: ear-slash thin: ear-slash light: ear-slash bold: ear-slash fill: ear-slash duotone: ear-slash

Implementation

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