suitcaseRolling static method

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

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

Implementation

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