fix(lint): format code with dart format
This commit is contained in:
parent
bfd9185284
commit
266f5f8628
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue