currencyInr static method

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

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

Implementation

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