alignCenterHorizontal static method

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

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

Implementation

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