currencyJpy static method

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

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

Implementation

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