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