flipHorizontal static method

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

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

Implementation

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