replitLogo static method

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

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

Implementation

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