TwilioVoiceFlutterCall constructor

const TwilioVoiceFlutterCall({
  1. required String id,
  2. required String fromDisplayName,
  3. required String toDisplayName,
  4. required bool mute,
  5. required bool speaker,
  6. required TwilioVoiceFlutterStatus status,
  7. required bool outgoing,
  8. required String to,
  9. required String toPhotoURL,
})

Constructor to initialize all the required properties

Implementation

const TwilioVoiceFlutterCall({
  required this.id,
  required this.fromDisplayName,
  required this.toDisplayName,
  required this.mute,
  required this.speaker,
  required this.status,
  required this.outgoing,
  required this.to,
  required this.toPhotoURL,
});