caretDoubleRight static method

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

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

Implementation

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