record property

(T1, T2) get record

Returns the pair as a modern Dart 3 Record for easy destructuring. Example: var (a, b) = myPair.record;

Implementation

(T1, T2) get record => (first, second);