VoiceHeader constructor

const VoiceHeader({
  1. Key? key,
  2. required bool voiceonly,
  3. required bool isStartTimer,
  4. required double height,
  5. required String? remoteIdentity,
  6. required String? direction,
  7. required String? txtDirection,
  8. TextStyle? titleTextStyle,
  9. TextStyle? timerTextStyle,
  10. TextStyle? directionTextStyle,
  11. required String txtTimer,
  12. required String txtWaiting,
})

Implementation

const VoiceHeader({
  Key? key,
  required this.voiceonly,
  required this.isStartTimer,
  required this.height,
  required this.remoteIdentity,
  required this.direction,
  required this.txtDirection,
  this.titleTextStyle,
  this.timerTextStyle,
  this.directionTextStyle,
  required this.txtTimer,
  required this.txtWaiting,
}) : super(key: key);