markdownLogo static method

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

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

Implementation

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