paintBrushBroad static method

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

regular: paint-brush-broad thin: paint-brush-broad light: paint-brush-broad bold: paint-brush-broad fill: paint-brush-broad duotone: paint-brush-broad

Implementation

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