PaginatedImageListView constructor

const PaginatedImageListView({
  1. Key? key,
  2. double width = double.infinity,
  3. required List<String> imageUrl,
  4. double? height,
})

Implementation

const PaginatedImageListView({
  Key? key,
  this.width = double.infinity,
  required this.imageUrl,
  this.height,
}) : super(key: key);