currencyDollarSimple static method

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

regular: currency-dollar-simple thin: currency-dollar-simple light: currency-dollar-simple bold: currency-dollar-simple fill: currency-dollar-simple duotone: currency-dollar-simple

Implementation

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