1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-04-21 15:22:01 +02:00
nc-photos/lib/primitive.dart

6 lines
60 B
Dart
Raw Normal View History

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