carrot static method

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

regular: carrot thin: carrot light: carrot bold: carrot fill: carrot duotone: carrot

Implementation

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