sample_dart_sdk/lib/sdk/services/CategoryService.dart

8 lines
149 B
Dart
Raw Normal View History

2021-09-04 19:07:29 +07:00
import 'package:sample_dart_dsdk/sdk/models/CategoryModel.dart';
class CategoryService {
List<Category> getAll() {
return List.empty();
}
}