meetingStatus method
The event channel used to interact with the native platform meetingStatus function
Implementation
@override
Future<List> meetingStatus(String meetingId) async {
var optionMap = <String, String>{};
optionMap.putIfAbsent("meetingId", () => meetingId);
return await channel
.invokeMethod<List>('meeting_status', optionMap)
.then<List>((List? value) => value ?? List.empty());
}