showCallNotification method

Future<bool> showCallNotification({
  1. required String callId,
  2. required String callerName,
  3. required bool isVideo,
  4. String? callerAvatar,
})

Shows a full-screen incoming call notification.

Implementation

Future<bool> showCallNotification({
  required String callId,
  required String callerName,
  required bool isVideo,
  String? callerAvatar,
}) {
  throw UnimplementedError('showCallNotification() has not been implemented.');
}