ImageBox constructor

const ImageBox({
  1. Key? key,
  2. Color? bgColor,
  3. required List<String> imageList,
  4. required int imageIndex,
})

Implementation

const ImageBox(
    {Key? key,
    this.bgColor,
    required this.imageList,
    required this.imageIndex})
    : super(key: key);