base64DecBytes static method

Uint8List base64DecBytes(
  1. String input
)

Decodes a base64 string to Uint8List

Implementation

static Uint8List base64DecBytes(String input) {
  return base64Decode(input);
}