getLogoUint8List method
Implementation
Uint8List? getLogoUint8List() {
String base = getLogo().trim(); // logo en base 64
if(base.isEmpty) return null;
return base64Decode(base);
}
Uint8List? getLogoUint8List() {
String base = getLogo().trim(); // logo en base 64
if(base.isEmpty) return null;
return base64Decode(base);
}