pottedPlant static method

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

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

Implementation

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