flipVertical static method

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

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

Implementation

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