ImageListsWidget constructor

const ImageListsWidget({
  1. Key? key,
  2. Widget? header,
  3. double aspectRatio = 1,
  4. required List<ImageInfoData> images,
  5. Color? themeColor,
  6. Widget videoBuilder(
    1. String url
    )?,
  7. bool isShowTitle = false,
  8. bool shrinkWrap = true,
})

Implementation

const ImageListsWidget({
  Key? key,
  this.header,
  this.aspectRatio = 1,
  required this.images,
  this.themeColor,
  this.videoBuilder,
  this.isShowTitle = false,
  this.shrinkWrap = true,
}) : super(key: key);