CallKeepOutgoingConfig constructor

CallKeepOutgoingConfig({
  1. required String uuid,
  2. String? callerName,
  3. String? handle,
  4. bool hasVideo = false,
  5. double duration = 180,
  6. Map<String, dynamic>? extra,
  7. required CallKeepIosConfig iosConfig,
})

Implementation

CallKeepOutgoingConfig({
  required String uuid,
  String? callerName,
  String? handle,
  bool hasVideo = false,
  double duration = 180,
  Map<String, dynamic>? extra,
  required this.iosConfig,
}) : super(
        uuid: uuid,
        callerName: callerName,
        handle: handle,
        hasVideo: hasVideo,
        duration: duration,
        extra: extra,
      );