ImageWidget constructor

const ImageWidget({
  1. Key? key,
  2. String? imageUrl,
  3. Uint8List? imageMemory,
  4. BoxFit? fit,
  5. double? width,
  6. double? height,
  7. bool? forceNetworkIfNotMemory,
  8. String? assetPlaceHolder,
})

Implementation

const ImageWidget({
  Key? key,
  this.imageUrl,
  this.imageMemory,
  this.fit,
  this.width,
  this.height,
  this.forceNetworkIfNotMemory,
  this.assetPlaceHolder,
}) : super(key: key);