stool static method

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

regular: stool thin: stool light: stool bold: stool fill: stool duotone: stool

Implementation

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