CallKeepCallData constructor

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

Implementation

CallKeepCallData({
  required String uuid,
  this.callerName,
  this.handle,
  this.hasVideo = false,
  this.isAccepted = false,
  this.duration = 180,
  this.extra,
}) : super(uuid: uuid);