scooter static method

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

regular: scooter thin: scooter light: scooter bold: scooter fill: scooter duotone: scooter

Implementation

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