boundingBox property

AppIconData get boundingBox

regular: bounding-box thin: bounding-box light: bounding-box bold: bounding-box fill: bounding-box duotone: bounding-box

Implementation

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