import 'package:get/get.dart'; class SelectBranchState{ SelectBranchState() { Map map = Get.arguments; idList.value = map['idList']; countryCode.value = map['countryCode']; receiverNumber.value = map['number']; } RxInt type = 1.obs;// 1、个人用户 2、星寓用户 final RxString receiverNumber = ''.obs; final RxString countryName = '中国'.obs; final RxString countryCode = '86'.obs; final RxList idList = [].obs; }