popsicle static method

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

regular: popsicle thin: popsicle light: popsicle bold: popsicle fill: popsicle duotone: popsicle

Implementation

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