CodeNestAssetImage constructor

const CodeNestAssetImage({
  1. Key? key,
  2. required String assetPath,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.cover,
})

Implementation

const CodeNestAssetImage({
  super.key,
  required this.assetPath,
  this.width,
  this.height,
  this.fit = BoxFit.cover,
});