Skip to content

Commit

Permalink
Fix key constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
aguilaair committed May 28, 2022
1 parent 881b03b commit 80c4a35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [3.0.1+1] - 28/05/2022

- Fix RequireEmailUpfront key constructor

## [3.0.1] - 28/05/2022
- Apply flutter lints
- Formatting and applying conventions
Expand Down
6 changes: 3 additions & 3 deletions lib/widgets/sendMessage/require_email_upfront.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ class RequireEmailUpfront extends StatefulWidget {
final bool showDivider;

const RequireEmailUpfront(
Key? key,
this.setCustomer,
this.props,
this.textColor,
this.showDivider,
) : super(key: key);
this.showDivider, {
Key? key,
}) : super(key: key);
@override
_RequireEmailUpfrontState createState() => _RequireEmailUpfrontState();
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: papercups_flutter
description: Native Flutter implementation of the papercups.io chat widget.
version: 3.0.1
version: 3.0.1+1
homepage: https://github.com/aguilaair/papercups_flutter

environment:
Expand Down

0 comments on commit 80c4a35

Please sign in to comment.