messengerLogo static method

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

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

Implementation

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