ChatVoiceRecordBar constructor

const ChatVoiceRecordBar({
  1. Key? key,
  2. required dynamic onLongPressStart(
    1. LongPressStartDetails details
    ),
  3. required dynamic onLongPressEnd(
    1. LongPressEndDetails details
    ),
  4. required dynamic onLongPressMoveUpdate(
    1. LongPressMoveUpdateDetails details
    ),
  5. Color? speakBarColor,
  6. TextStyle? speakTextStyle,
})

Implementation

const ChatVoiceRecordBar({
  Key? key,
  required this.onLongPressStart,
  required this.onLongPressEnd,
  required this.onLongPressMoveUpdate,
  this.speakBarColor,
  this.speakTextStyle,
}) : super(key: key);