From 266f5f8628d5698970c1df80b693a37ebba636df Mon Sep 17 00:00:00 2001 From: ricardodalarme Date: Tue, 9 Jan 2024 21:06:22 -0300 Subject: [PATCH] fix(lint): format code with dart format --- lib/src/undoable.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/src/undoable.dart b/lib/src/undoable.dart index 888c3d9..85a0ef1 100644 --- a/lib/src/undoable.dart +++ b/lib/src/undoable.dart @@ -1,5 +1,6 @@ class Undoable { - Undoable(this._value, {Undoable? previousValue}) : _previous = previousValue; + Undoable(this._value, {Undoable? previousValue}) + : _previous = previousValue; T _value; Undoable? _previous;