dropSimple static method

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

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

Implementation

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