destroy method

  1. @override
void destroy()
override

Implementation

@override
void destroy() {
  super.destroy();
  subscriptions.forEach((String key, _QuerySubscription sub) {
    sub.destroy();
  });
}