ImageFromUrl constructor

const ImageFromUrl({
  1. required String imageUrl,
  2. double? radius,
  3. double? height,
  4. double? width,
  5. Key? key,
})

Implementation

const ImageFromUrl({
  required this.imageUrl,
  this.radius,
  this.height,
  this.width,
  Key? key,
}) : super(key: key);