bone static method

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

regular: bone thin: bone light: bone bold: bone fill: bone duotone: bone

Implementation

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