getStatistics method

  1. @override
Future<CallStatistics?> getStatistics({
  1. required String callId,
})
override

Get call statistics

Implementation

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