You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
236B

  1. import 'package:get/get.dart';
  2. class ChangeFieldFormSupply extends GetxController {
  3. bool isChanged;
  4. void init() {
  5. isChanged = false;
  6. update();
  7. }
  8. void change(bool changed) {
  9. isChanged = changed;
  10. update();
  11. }
  12. }