alignTopSimple static method

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

regular: align-top-simple thin: align-top-simple light: align-top-simple bold: align-top-simple fill: align-top-simple duotone: align-top-simple

Implementation

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