paintBrush static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}