readAsBytes property

Uint8List? readAsBytes

Decodes the base64 string and retrieve it as a Uint8List.

Implementation

Uint8List? get readAsBytes => (base64?.isNotEmpty ?? false) ? base64Decode(base64!) : null;