add project

This commit is contained in:
chanthasuon
2021-03-01 22:16:41 +07:00
commit 7fb3f2582e
70 changed files with 1812 additions and 0 deletions

14
lib/sdk/ClientSDK.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'package:flutter_service/model/CategoryResponse.dart';
import 'package:flutter_service/service/CategoryService.dart';
class ClientSDK {
Future<List<CategoryResponse>> clientGetAllCategoryService() async {
return await getAllCategoryService();
}
}