MultiImageViewer constructor

const MultiImageViewer({
  1. Key? key,
  2. required List<ImageModel> images,
  3. Color backgroundColor = Colors.black87,
  4. TextStyle textStyle = const TextStyle(fontSize: 30, color: Colors.white),
  5. double height = 205,
  6. double? width,
  7. Map<String, String>? networkImageHeaders,
})

Implementation

const MultiImageViewer({
  Key? key,
  required this.images,
  this.backgroundColor = Colors.black87,
  this.textStyle = const TextStyle(
    fontSize: 30,
    color: Colors.white,
  ),
  this.height = 205,
  this.width,
  this.networkImageHeaders,
}) : super(key: key);