fromBase64 static method

Uint8List fromBase64(
  1. String base64
)

convert base64 string to bytes array

Implementation

static Uint8List fromBase64(String base64) {
  final data = base64Decode(base64);
  return data;
}