wheelchair static method

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

regular: wheelchair thin: wheelchair light: wheelchair bold: wheelchair fill: wheelchair duotone: wheelchair

Implementation

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