DioImage constructor

DioImage({
  1. required Uri imageUrl,
  2. String fallbackAssetPath = '../assets/image_placeholder.png',
})

Implementation

DioImage({
  required this.imageUrl,
  this.fallbackAssetPath = '../assets/image_placeholder.png',
});