circle static method

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

regular: circle thin: circle light: circle bold: circle fill: circle duotone: circle

Implementation

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