joinMeeting method Null safety
- {required HMSConfig config}
join meeting by passing HMSConfig instance to it.
Implementation
Future<void> joinMeeting({required HMSConfig config}) async {
return await PlatformService.invokeMethod(PlatformMethod.joinMeeting,
arguments: config.getJson());
}