currencyKrw static method

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

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

Implementation

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