scribbleLoop static method

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

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

Implementation

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