2023-09-22 16:06:08 +08:00
|
|
|
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
class SelectBranchState{
|
|
|
|
|
SelectBranchState() {
|
|
|
|
|
Map map = Get.arguments;
|
2024-08-21 14:12:15 +08:00
|
|
|
idList.value = map['idList'];
|
|
|
|
|
countryCode.value = map['countryCode'];
|
|
|
|
|
receiverNumber.value = map['number'];
|
2023-09-22 16:06:08 +08:00
|
|
|
}
|
2024-08-21 14:12:15 +08:00
|
|
|
RxInt type = 1.obs;// 1、个人用户 2、星寓用户
|
|
|
|
|
|
|
|
|
|
final RxString receiverNumber = ''.obs;
|
|
|
|
|
final RxString countryName = '中国'.obs;
|
|
|
|
|
final RxString countryCode = '86'.obs;
|
|
|
|
|
final RxList idList = [].obs;
|
2023-09-22 16:06:08 +08:00
|
|
|
}
|