diff --git a/CHANGELOG.md b/CHANGELOG.md index cf012ce8..df20831a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ Message Alignment * **Fix**: [266](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/pull/266) Update dependencies +* **Fix**: [264](https://github.com/SimformSolutionsPvtLtd/flutter_chatview/issues/264) missing + voice_message_configuration.dart export in models.dart ## [2.2.0] diff --git a/lib/src/models/config_models/message_configuration.dart b/lib/src/models/config_models/message_configuration.dart index b70ac7a6..6293d2d0 100644 --- a/lib/src/models/config_models/message_configuration.dart +++ b/lib/src/models/config_models/message_configuration.dart @@ -20,7 +20,6 @@ * SOFTWARE. */ import 'package:chatview/src/models/models.dart'; -import 'package:chatview/src/models/config_models/voice_message_configuration.dart'; import 'package:flutter/material.dart'; import '../../values/typedefs.dart'; diff --git a/lib/src/models/models.dart b/lib/src/models/models.dart index fe2028cc..f5036116 100644 --- a/lib/src/models/models.dart +++ b/lib/src/models/models.dart @@ -46,3 +46,4 @@ export 'config_models/reply_suggestions_config.dart'; export 'config_models/suggestion_list_config.dart'; export 'config_models/suggestion_item_config.dart'; export 'config_models/scroll_to_bottom_button_config.dart'; +export 'config_models/voice_message_configuration.dart'; diff --git a/lib/src/widgets/voice_message_view.dart b/lib/src/widgets/voice_message_view.dart index 3bbf921f..40466e3c 100644 --- a/lib/src/widgets/voice_message_view.dart +++ b/lib/src/widgets/voice_message_view.dart @@ -2,7 +2,6 @@ import 'dart:async'; import 'package:audio_waveforms/audio_waveforms.dart'; import 'package:chatview/chatview.dart'; -import 'package:chatview/src/models/config_models/voice_message_configuration.dart'; import 'package:chatview/src/widgets/reaction_widget.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart';