InsertPatch<T> constructor

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

Implementation

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