AssetImageWidget constructor

const AssetImageWidget({
  1. Key? key,
  2. required String assetName,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.contain,
  6. Color? color,
})

Implementation

const AssetImageWidget({
  super.key,
  required this.assetName,
  this.width,
  this.height,
  this.fit = BoxFit.contain,
  this.color,
});