PhoneCall constructor

PhoneCall([
  1. DateTime? timestamp,
  2. String? callType,
  3. int? duration,
  4. String? formattedNumber,
  5. String? number,
  6. String? name,
])

Implementation

PhoneCall([
  this.timestamp,
  this.callType,
  this.duration,
  this.formattedNumber,
  this.number,
  this.name,
]);