sphere static method

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

regular: sphere thin: sphere light: sphere bold: sphere fill: sphere duotone: sphere

Implementation

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