MessageActionPhoneCall constructor

const MessageActionPhoneCall({
  1. required bool video,
  2. required int callId,
  3. PhoneCallDiscardReasonBase? reason,
  4. int? duration,
})

Message Action Phone Call constructor.

Implementation

const MessageActionPhoneCall({
  required this.video,
  required this.callId,
  this.reason,
  this.duration,
}) : super._();