flowerTulip static method

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

regular: flower-tulip thin: flower-tulip light: flower-tulip bold: flower-tulip fill: flower-tulip duotone: flower-tulip

Implementation

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