handTap static method

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

regular: hand-tap thin: hand-tap light: hand-tap bold: hand-tap fill: hand-tap duotone: hand-tap

Implementation

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