money static method

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

regular: money thin: money light: money bold: money fill: money duotone: money

Implementation

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