meetinDetails method
The event channel used to interact with the native platform meetinDetails(iOS & Android) function
Implementation
@override
Future<List> meetinDetails() async {
return channel
.invokeMethod<List>('meeting_details')
.then<List>((List? value) => value ?? List.empty());
}