ImageCell constructor

const ImageCell({
  1. Key? key,
  2. String? path,
  3. BorderRadius? borderRadius,
  4. double width = double.infinity,
  5. double height = 150,
  6. double radius = 5,
  7. Widget? placeholder,
  8. Widget? errorWidget,
})

Implementation

const ImageCell(
    {Key? key,
    this.path,
    this.borderRadius,
    this.width = double.infinity,
    this.height = 150,
    this.radius = 5,
    this.placeholder,
    this.errorWidget})
    : super(key: key);