runInside<T> abstract method

T runInside<T>(
  1. T fn()
)

Runs the code within fn inside of this zone. This may trigger an onTurnStart and onTurnDone event if you are outside the zone when calling. onTurnStart may be executed after executing fn.

If inInnerZone is true, fn is just called normally.

Implementation

T runInside<T>(T fn());