registerLogCall method

  1. @mustCallSuper
void registerLogCall(
  1. void call()
)

Endpoint for _innerLumberdashClient log calls registry on _logCalls. Notifies the implementer after register the call, by call onNewLogCall.

Implementation

@mustCallSuper
void registerLogCall(final void Function() call) {
  _logCalls.add(call);

  onNewLogCall(call);
}