tooth static method

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

regular: tooth thin: tooth light: tooth bold: tooth fill: tooth duotone: tooth

Implementation

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