store_banner_bean.dart 342 B

12345678910111213
  1. import '../../resource/assets.gen.dart';
  2. class StoreBannerBean{
  3. final AssetGenImage banner; // 轮播图
  4. final AssetGenImage indicatorImg; // 选中时指示器图标
  5. final String unSelectedDesc; // 指示器文本
  6. StoreBannerBean({
  7. required this.banner,
  8. required this.indicatorImg,
  9. required this.unSelectedDesc,
  10. });
  11. }