mapResult method

List<T> mapResult(
  1. List<T> original,
  2. MutationResult result,
  3. bool returning
)
inherited

Implementation

List<T> mapResult(List<T> original, MutationResult result, bool returning) {
  // Delegate to the new method with empty inputMaps for backward compatibility
  return mapResultWithInputs(original, const [], result, returning);
}