trolleySuitcase static method

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

regular: trolley-suitcase thin: trolley-suitcase light: trolley-suitcase bold: trolley-suitcase fill: trolley-suitcase duotone: trolley-suitcase

Implementation

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