From 085009aa98d6f456aad56053975c56ef89be62a1 Mon Sep 17 00:00:00 2001 From: Kaival Date: Sun, 5 Nov 2023 12:46:06 +0530 Subject: [PATCH] :sparkles: Added @experimental annotation --- lib/uuid_value.dart | 3 +++ pubspec.yaml | 1 + 2 files changed, 4 insertions(+) diff --git a/lib/uuid_value.dart b/lib/uuid_value.dart index e60e606..6fa4f9c 100644 --- a/lib/uuid_value.dart +++ b/lib/uuid_value.dart @@ -1,9 +1,12 @@ import 'dart:typed_data'; +import 'package:meta/meta.dart'; + import 'parsing.dart'; import 'uuid.dart'; import 'validation.dart'; +@experimental class UuidValue { final String uuid; diff --git a/pubspec.yaml b/pubspec.yaml index a0bf380..3209dc0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -9,6 +9,7 @@ environment: dependencies: crypto: ^3.0.0 sprintf: ^7.0.0 + meta: ^1.11.0 dev_dependencies: lints: ^2.1.1 test: ^1.24.6