phoneSlash static method

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

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

Implementation

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