decodeUint8List function

Uint8List decodeUint8List(
  1. String input
)

Implementation

Uint8List decodeUint8List(String input) {
  return base64.decode(input);
}