record property
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);
Returns the pair as a modern Dart 3 Record for easy destructuring.
Example: var (a, b) = myPair.record;
(T1, T2) get record => (first, second);