suitcase static method

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

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

Implementation

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