ladderSimple static method

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

regular: ladder-simple thin: ladder-simple light: ladder-simple bold: ladder-simple fill: ladder-simple duotone: ladder-simple

Implementation

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