microsoftOutlookLogo static method

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

regular: microsoft-outlook-logo thin: microsoft-outlook-logo light: microsoft-outlook-logo bold: microsoft-outlook-logo fill: microsoft-outlook-logo duotone: microsoft-outlook-logo

Implementation

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