Alert method

WebRTCClient Alert(
  1. void notifier(
    1. String message
    )
)

Implementation

WebRTCClient Alert(void Function(String message) notifier) {
  alert = notifier;
  return this;
}