nc-photos/lib/primitive.dart

5 lines
60 B
Dart

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