caretDoubleLeft static method

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

regular: caret-double-left thin: caret-double-left light: caret-double-left bold: caret-double-left fill: caret-double-left duotone: caret-double-left

Implementation

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