toBase64 method

String toBase64()

Converts this Uint8List to a base64-encoded string.

Useful for converting binary data to a text representation that can be easily stored or transmitted as text.

Implementation

String toBase64() => base64Encode(this);