notify method

Future<void> notify(
  1. SecureSocket socket
)

Implementation

Future<void> notify(SecureSocket socket) async {
  for (final observer in _observers) {
    await observer.update(socket);
  }
}