isVideoCall static method

bool isVideoCall(
  1. Call call
)

Returns true if the call is a video call.

Implementation

static bool isVideoCall(Call call) {
  return call.type == CallTypeConstants.videoCall;
}