alignTop static method

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

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

Implementation

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