codesandboxLogo static method

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

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

Implementation

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