BannerModel constructor

BannerModel({
  1. required String imagePath,
  2. required String id,
  3. BoxFit boxFit = BoxFit.cover,
})

BannerModel(imagePath: '/assets/banner1.png', id: "1")

OR

BannerModel(imagePath: '"https://picjumbo.com/wp-content/uploads/the-golden-gate-bridge-sunset-1080x720.jpg"', id: "2"),

Implementation

BannerModel(
    {required this.imagePath, required this.id, this.boxFit = BoxFit.cover});