AudioPlayerPreview constructor

const AudioPlayerPreview({
  1. Key? key,
  2. required String source,
  3. required VoidCallback onDelete,
  4. required String conversationId,
  5. required String channelName,
})

Implementation

const AudioPlayerPreview({
  Key? key,
  required this.source,
  required this.onDelete,
  required this.conversationId,
  required this.channelName,
}) : super(key: key);