mirror of
https://github.com/ente-io/ente.git
synced 2025-07-01 13:13:35 +00:00
7 lines
139 B
Dart
7 lines
139 B
Dart
///This is useful when you want to pass a primitive by reference.
|
|
|
|
class PrimitiveWrapper {
|
|
var value;
|
|
PrimitiveWrapper(this.value);
|
|
}
|