getLastHeldCall method

Call? getLastHeldCall()

Returns the last held call, or null if there are no held calls.

Implementation

Call? getLastHeldCall() {
  return _heldCalls.isNotEmpty ? _heldCalls.last : null;
}