Renamed serviceInstances => registeredServices and added a removeService method

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2025-04-29 18:56:48 +02:00
parent d1daf0e39f
commit 3ef93bb3f9
3 changed files with 25 additions and 6 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ void main() {
child: Builder(
builder: (context) {
final provider = ArcaneServiceProvider.of(context);
expect(provider.serviceInstances, equals(testServices));
expect(provider.registeredServices, equals(testServices));
return const SizedBox();
},
),