RecentCallModel constructor

RecentCallModel({
  1. required String userId,
  2. required String sessionId,
  3. required int callType,
  4. int? timestamp,
})

Implementation

RecentCallModel({
  required this.userId,
  required this.sessionId,
  required this.callType,
  this.timestamp,
});