isCallType static method

bool isCallType(
  1. int type
)

Implementation

static bool isCallType(int type) {
  return type == ZegoCallInvitationType.voiceCall.value ||
      type == ZegoCallInvitationType.videoCall.value;
}