getCurrentCallDuration static method

Future<int?> getCurrentCallDuration()

This method gives the current ongoing call duration for Android. For iOS it will return null by default

Implementation

static Future<int?> getCurrentCallDuration() async {
  return FlyChatFlutterPlatform.instance.getCurrentCallDuration();
}