PhoneCallRequested constructor

const PhoneCallRequested({
  1. required bool video,
  2. required int id,
  3. required int accessHash,
  4. required DateTime date,
  5. required int adminId,
  6. required int participantId,
  7. required Uint8List gAHash,
  8. required PhoneCallProtocolBase protocol,
})

Phone Call Requested constructor.

Implementation

const PhoneCallRequested({
  required this.video,
  required this.id,
  required this.accessHash,
  required this.date,
  required this.adminId,
  required this.participantId,
  required this.gAHash,
  required this.protocol,
}) : super._();