static Object? encodeNullableGeneric<T>(T? input, Object? Function(T value) toJson) { return input == null ? null : toJson(input); }