framerLogo static method

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

regular: framer-logo thin: framer-logo light: framer-logo bold: framer-logo fill: framer-logo duotone: framer-logo

Implementation

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