10 lines
281 B
Dart
10 lines
281 B
Dart
import 'package:get/get.dart';
|
|
|
|
import '../Model/UserDataModel.dart';
|
|
import '../Model/ProfileUserData.dart';
|
|
|
|
class UserDataController extends GetxController{
|
|
Rx<UserData> userdatacontroller=UserData().obs;
|
|
Rx<ProfileUserData> profiledatacontroller=ProfileUserData().obs;
|
|
|
|
} |