caretCircleDoubleRight static method

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

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

Implementation

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