matrixLogo static method

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

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

Implementation

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