scribble static method

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

regular: scribble thin: scribble light: scribble bold: scribble fill: scribble duotone: scribble

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;
  }
}