unsuspendAll method

void unsuspendAll()

Implementation

void unsuspendAll() {
  subscriptions.forEach((subscription) {
    subscription.state = HotlineSubscriptionRequestState.granted;
  });
}