isDirty property

  1. @override
bool isDirty
override

Is the form dirty (At least on of its field has changed and the form not submitted yet)

Implementation

@override
bool get isDirty {
  return _fields.any((e) {
    return e.isDirty;
  });
}