ImageCard constructor

const ImageCard({
  1. Key? key,
  2. bool? active,
  3. int? index,
  4. required dynamic myModel,
  5. required double? height,
})

Implementation

const ImageCard({Key? key, this.active, this.index, required this.myModel, required this.height})
    : super(key: key);