stethoscope static method

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

regular: stethoscope thin: stethoscope light: stethoscope bold: stethoscope fill: stethoscope duotone: stethoscope

Implementation

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