circlesThreePlus static method

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

regular: circles-three-plus thin: circles-three-plus light: circles-three-plus bold: circles-three-plus fill: circles-three-plus duotone: circles-three-plus

Implementation

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