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.

13 lines
418 B

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