alignCenterVertical static method

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

regular: align-center-vertical thin: align-center-vertical light: align-center-vertical bold: align-center-vertical fill: align-center-vertical duotone: align-center-vertical

Implementation

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