import 'package:fis_jsonrpc/rpc.dart'; import 'package:get/get.dart'; class FollowUpRecordState { final RxList _followUpDTOList = RxList(); List get followUpDTOList => _followUpDTOList.toList(); set followUpDTOList(List val) => _followUpDTOList.value = val; }