hangUp method

void hangUp()

Implementation

void hangUp() {
  final activeCall = call?.call;
  if (activeCall == null) return;
  activeCall.hangup();
}