Files
cherrypick/examples/client_app/lib/use_case.dart

4 lines
69 B
Dart
Raw Normal View History

2025-05-14 13:41:31 +03:00
class UseCase {
String fetchData() => "Data fetched by UseCase";
}