paintBrush static method

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

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

Implementation

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