You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
595 B

3 years ago
import 'package:get/get.dart';
import 'package:provider/provider.dart';
3 years ago
import 'package:aku_new_community/provider/app_provider.dart';
import 'package:aku_new_community/provider/data_provider.dart';
3 years ago
import 'package:aku_new_community/provider/user_provider.dart';
class UserTool {
3 years ago
static UserProvider get userProvider =>
Provider.of<UserProvider>(Get.context!, listen: false);
3 years ago
3 years ago
static AppProvider get appProveider =>
Provider.of<AppProvider>(Get.context!, listen: false);
static DataProvider get dataProvider =>
Provider.of<DataProvider>(Get.context!, listen: false);
}