2023-09-22 16:06:08 +08:00
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
|
|
|
|
|
|
import 'transferSmartLock_entity.dart';
|
|
|
|
|
|
|
|
|
|
class TransferSmartLockState{
|
2024-06-14 15:46:43 +08:00
|
|
|
RxList<TransferSmartLockItemData> transferSmartLockListData = <TransferSmartLockItemData>[].obs;
|
2023-09-22 16:06:08 +08:00
|
|
|
final TextEditingController searchController = TextEditingController();
|
2024-01-23 17:29:18 +08:00
|
|
|
bool isSelectAll = false;
|
|
|
|
|
}
|