wallet static method

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

regular: wallet thin: wallet light: wallet bold: wallet fill: wallet duotone: wallet

Implementation

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