circleHalf static method

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

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

Implementation

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