motorcycle static method

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

regular: motorcycle thin: motorcycle light: motorcycle bold: motorcycle fill: motorcycle duotone: motorcycle

Implementation

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