This commit is contained in:
chanthasuon
2021-03-01 22:27:35 +07:00
parent 7fb3f2582e
commit 3e66f24c74
2 changed files with 12 additions and 3 deletions

View File

@@ -5,6 +5,14 @@ import 'package:flutter_service/service/CategoryService.dart';
class ClientSDK {
ClientSDK._privateConstructor();
static final ClientSDK _instance = ClientSDK._privateConstructor();
static ClientSDK get instance => _instance;
Future<List<CategoryResponse>> clientGetAllCategoryService() async {
return await getAllCategoryService();
}