12 lines
282 B
Dart
Executable File
12 lines
282 B
Dart
Executable File
|
|
import 'package:get/get.dart';
|
|
import '../checkingInSetHolidays/checkingInSetHolidays_entity.dart';
|
|
|
|
class CheckingInDeletHolidaysState{
|
|
final listItem = ListItem().obs;
|
|
|
|
CheckingInDeletHolidaysState() {
|
|
Map map = Get.arguments;
|
|
listItem.value = map["listItem"];
|
|
}
|
|
} |