Back to Flutter Rust Bridge

Tuples

website/v1_mdbook/src/feature/lang_tuple.md

2.12.0422 B
Original Source

Tuples

Introduced in Dart 3, records provide the equivalent of Rust's tuples. Tuples of up to 10 elements are supported, and more can be added by nesting tuples. Tuples can be returned, received as parameters, and stored inside structs.

rust,noplayground
pub fn my_coordinate() -> (f64, f64);
dart
(double, double) myCoordinate();
final (lat, long) = myCoordinate();