onAfterAnyModify method

  1. @override
void onAfterAnyModify()
override

Called after the all modifications

Implementation

@override
void onAfterAnyModify() {
  super.onAfterAnyModify();
  times.modifiedNow();
  // during initial `create` the file will be null.
  _file?.dirtyObject(this);
}