scanSmiley static method

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

regular: scan-smiley thin: scan-smiley light: scan-smiley bold: scan-smiley fill: scan-smiley duotone: scan-smiley

Implementation

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