lampPendant static method

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

regular: lamp-pendant thin: lamp-pendant light: lamp-pendant bold: lamp-pendant fill: lamp-pendant duotone: lamp-pendant

Implementation

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