1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-12 02:08:53 +01:00
nc-photos/lib/primitive.dart

6 lines
60 B
Dart
Raw Normal View History

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