currencyEth static method

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

regular: currency-eth thin: currency-eth light: currency-eth bold: currency-eth fill: currency-eth duotone: currency-eth

Implementation

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