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.
11 lines
408 B
11 lines
408 B
import 'package:aku_community/provider/app_provider.dart';
|
|
import 'package:aku_community/provider/user_provider.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class UserTool {
|
|
static UserProvider get userProvider =>
|
|
Provider.of<UserProvider>(Get.context!, listen: false);
|
|
static AppProvider get appProveider => Provider.of<AppProvider>(Get.context!,listen: false);
|
|
}
|