Uint8List? decodeNullableUint8List(String? input) { if (input != null) { return decodeUint8List(input); } return null; }