notionLogo static method

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

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

Implementation

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