getLogoUint8List method

Uint8List? getLogoUint8List()

Implementation

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