trashSimple static method

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

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

Implementation

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