ladder static method

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

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

Implementation

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