Skip to content

Commit

Permalink
fix(lint): format code with dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardodalarme committed Jan 10, 2024
1 parent bfd9185 commit 266f5f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/undoable.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
class Undoable<T> {
Undoable(this._value, {Undoable<T>? previousValue}) : _previous = previousValue;
Undoable(this._value, {Undoable<T>? previousValue})
: _previous = previousValue;

T _value;
Undoable<T>? _previous;
Expand Down

0 comments on commit 266f5f8

Please sign in to comment.