pill static method

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

regular: pill thin: pill light: pill bold: pill fill: pill duotone: pill

Implementation

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