decodeBase64 static method

Uint8List decodeBase64(
  1. String base64Code
)

Implementation

static Uint8List decodeBase64(String base64Code) {
  return base64.decode(base64Code);
}