bag property

AppIconData get bag

regular: bag thin: bag light: bag bold: bag fill: bag duotone: bag

Implementation

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