call method

Future<void> call(
  1. String userId,
  2. dynamic callMediaType
)

Make a call

@param userId callees @param callMediaType Call type

Implementation

Future<void> call(String userId, TUICallMediaType callMediaType) async {
  return await TUICallKitPlatform.instance.call(userId, callMediaType);
}