suitcaseSimple static method

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

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

Implementation

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