import 'package:get/get.dart'; class GatewayGetWifiListState{ GatewayGetWifiListState() { var map = Get.arguments; if (map['macAddress'] != null && map['macAddress'] != '') { macAddress = map['macAddress']; } } final RxList> wifiNameDataList = >[].obs; String macAddress = ''; RxBool ifCurrentScreen = true.obs; // 是否是当前界面,用于判断是否需要针对当前界面进行展示 RxInt sureBtnState = 0.obs; }