runInZone<R> method

  1. @override
R runInZone<R>(
  1. R callback()
)

Executes the callback function within the current NgZone.

This is expected to be provided by the current application.

Implementation

@override
R runInZone<R>(R Function() callback) => _ngZone.run(callback);