hand static method

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

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

Implementation

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