Base64ImageView constructor

const Base64ImageView({
  1. required String data,
  2. double? width,
  3. double? height,
  4. BoxFit? fit,
  5. double borderRadius = 0,
  6. Key? key,
})

Implementation

const Base64ImageView({
  required this.data,
  this.width,
  this.height,
  this.fit,
  this.borderRadius = 0
  ,super.key});