runPostRegisterCallback method

Future<void> runPostRegisterCallback()

Runs the post-register callback of all negotiators.

Implementation

Future<void> runPostRegisterCallback() async {
  for (final negotiator in negotiators.values) {
    await negotiator.postRegisterCallback();
  }
}