BannerEntity constructor

BannerEntity({
  1. required int id,
  2. required bool isActive,
  3. required String deepLink,
  4. required String imageLink,
  5. required String bannerType,
})

Implementation

BannerEntity({
  required this.id,
  required this.isActive,
  required this.deepLink,
  required this.imageLink,
  required this.bannerType,
});