amazonLogo static method

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

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

Implementation

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