circuitry static method

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

regular: circuitry thin: circuitry light: circuitry bold: circuitry fill: circuitry duotone: circuitry

Implementation

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