17 lines
419 B
Dart

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