implement example

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

View File

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