getStatistics method
Get call statistics
Implementation
@override
Future<CallStatistics?> getStatistics(
{required String callId}) async {
return CallStatistics.fromMap(await methodChannel.invokeMethod<Map<Object?, Object?>?>('getStatistics', {
"callId": callId
}));
}