convertToUint8List function

Uint8List convertToUint8List(
  1. String value
)

Utility method to convert base64 String into an Uint8List to use as an image

Implementation

Uint8List convertToUint8List(String value) => base64Decoder.convert(value);