microsoftWordLogo static method

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

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

Implementation

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