chartDonut static method

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

regular: chart-donut thin: chart-donut light: chart-donut bold: chart-donut fill: chart-donut duotone: chart-donut

Implementation

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