UpdatePatch<T> constructor

UpdatePatch<T>({
  1. required T newValue,
  2. required T oldValue,
})

Implementation

UpdatePatch({
  required this.newValue,
  required this.oldValue,
});