Line data Source code
1 : /// This allows a value of type T or T? to be treated as a value of type T?. 2 : /// 3 : /// We use this so that APIs that have become non-nullable can still be used 4 : /// with `!` and `?` to support older versions of the API as well. 5 5 : T? ambiguate<T>(T? value) => value;