imageFromBase64String function
- String base64String
A collection of methods which are used to convert and manage images stored in Base-64 Return the Image representation of a base 64 string
Implementation
/// Return the [Image] representation of a base 64 string
Image imageFromBase64String(String base64String) {
return Image.memory(base64Decode(base64String));
}