fix(lint): format code with dart format

This commit is contained in:
ricardodalarme 2024-01-09 21:06:22 -03:00
parent bfd9185284
commit 266f5f8628
1 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
class Undoable<T> { class Undoable<T> {
Undoable(this._value, {Undoable<T>? previousValue}) : _previous = previousValue; Undoable(this._value, {Undoable<T>? previousValue})
: _previous = previousValue;
T _value; T _value;
Undoable<T>? _previous; Undoable<T>? _previous;