control static method

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

regular: control thin: control light: control bold: control fill: control duotone: control

Implementation

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