flowerLotus static method

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

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

Implementation

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