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