Decodes the base64 string and retrieve it as a Uint8List.
Uint8List? get readAsBytes => (base64?.isNotEmpty ?? false) ? base64Decode(base64!) : null;