bytesFromString method

Uint8List bytesFromString()

Converting the base64 back to bytes

Implementation

Uint8List bytesFromString(){
  return base64.decode(bytesString);
}