Patch<T> constructor

Patch<T>({
  1. required ApplyFunc<T> applyFunc,
})

Implementation

Patch({required this.applyFunc}) {
  patches.add(this);
}