dropHalf static method

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

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

Implementation

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