coinVertical static method

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

regular: coin-vertical thin: coin-vertical light: coin-vertical bold: coin-vertical fill: coin-vertical duotone: coin-vertical

Implementation

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