handPointing static method

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

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

Implementation

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