dropHalfBottom static method

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

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

Implementation

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