handWithdraw static method

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

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

Implementation

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