nc-photos/app/lib/primitive.dart
2022-04-06 02:37:58 +08:00

5 lines
60 B
Dart

class Primitive<T> {
Primitive(this.value);
T value;
}