bone property

AppIconData get bone

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

Implementation

static AppIconData get bone {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.bone;
    case AppIconsStyle.thin:
      return AppIconsThin.bone;
    case AppIconsStyle.light:
      return AppIconsLight.bone;
    case AppIconsStyle.bold:
      return AppIconsBold.bone;
    case AppIconsStyle.fill:
      return AppIconsFill.bone;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.bone;
  }
}