withoutTouching<T> method

T withoutTouching<T>(
  1. T callback()
)
inherited

Disable touching for this model's runtime type during the callback scope.

Implementation

T withoutTouching<T>(T Function() callback) =>
    Model.withoutTouchingOn(<Type>[runtimeType], callback);