onReady method

void onReady(
  1. EventCallback onEvent
)

Implementation

void onReady(EventCallback<dynamic> onEvent) {
  return on("ready", allowInterop((e) {
    onEvent(e);
  }));
}