handPalm static method

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

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

Implementation

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