plant static method

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

regular: plant thin: plant light: plant bold: plant fill: plant duotone: plant

Implementation

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