qrCode static method

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

regular: qr-code thin: qr-code light: qr-code bold: qr-code fill: qr-code duotone: qr-code

Implementation

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