implement example

This commit is contained in:
Sergey Penkovsky
2025-05-14 13:41:31 +03:00
parent 32bda69476
commit e3eb0eef06
17 changed files with 583 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
class UseCase {
String fetchData() => "Data fetched by UseCase";
}