decodeImage static method

Uint8List decodeImage(
  1. String base64String
)

Decode Image from Base64 String

Implementation

static Uint8List decodeImage(String base64String) {
  final Uint8List list = base64.decode(base64String);
  return list;
}