nc-photos/app/lib/primitive.dart

6 lines
60 B
Dart
Raw Normal View History

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