base64ToBytes method

Uint8List base64ToBytes (String b64)

Implementation

static Uint8List base64ToBytes(String b64) {
  return Base64Codec().decode(b64);
}