decodeBase64 method
Decode from base64 to readable text
Implementation
String? decodeBase64() {
if (this == null) {
return null;
}
return utf8.decode(base64.decode(this!));
}
Decode from base64 to readable text
String? decodeBase64() {
if (this == null) {
return null;
}
return utf8.decode(base64.decode(this!));
}