onReady property

Implementation

static Stream<NotificareApplication> get onReady {
  return _getEventStream('ready').map((result) {
    final Map<dynamic, dynamic> json = result;
    return NotificareApplication.fromJson(json.cast());
  });
}