withoutTimestamps<T> method

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

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

Implementation

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