mirror of
https://github.com/ente-io/ente.git
synced 2025-05-27 13:09:56 +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);
|
|
}
|