alignCenterVerticalSimple static method

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

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

Implementation

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