Base64Image constructor

const Base64Image({
  1. Key? key,
  2. required String base64,
  3. double? width,
  4. double? height,
  5. BoxFit? fit,
})

Implementation

const Base64Image(
    {super.key, required this.base64, this.width, this.height, this.fit});