Uint8List? uintListFromString(String? string) { if (string == null) { return null; } return Base64Decoder().convert(string); }