androidLogo static method

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

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

Implementation

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