appleLogo static method

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

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

Implementation

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