drone static method

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

regular: drone thin: drone light: drone bold: drone fill: drone duotone: drone

Implementation

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