onInit method
override
Called immediately after the widget is allocated in memory. You might use this to initialize something for the controller.
Implementation
@override
void onInit() {
// Fetch the stored [Rect]s before, so that [OngoingCall] is displayed
// without any latencies.
_all().then((items) {
for (var e in items) {
_cache[e.$1] = e.$2;
}
});
super.onInit();
}