Skip to content

Commit 723d8d1

Browse files
committed
dart 3.7, redraw_counter_component_mixin had an error
1 parent 81cf6e0 commit 723d8d1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/src/view/redraw_counter_component_mixin.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ mixin RedrawCounterMixin<T extends UiProps> on UiComponent2<T> {
1818

1919
@override
2020
@mustCallSuper
21-
void componentDidUpdate(_, __, [___]) {
22-
super.componentDidUpdate(_, __, ___);
21+
void componentDidUpdate(__, ___, [____]) {
22+
super.componentDidUpdate(__, ___, ____);
2323

2424
redrawCount++;
2525
if (redrawCount < _desiredRedrawCount) {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: A web-based scriptable cadnano (see https://cadnano.org/ for origin
44
#author: David Doty <doty@ucdavis.edu>
55

66
environment:
7-
sdk: '>=3.5.0 <4.0.0'
7+
sdk: '>=3.7.0 <4.0.0'
88

99
dependencies:
1010
analyzer: ^6.8.0

0 commit comments

Comments
 (0)