1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-11 01:38:52 +01:00
nc-photos/app/lib/primitive.dart

6 lines
60 B
Dart
Raw Normal View History

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