@@ -40,7 +40,7 @@ final class StepManager with TerminalTools {
4040 int _loadingStep = 0 ;
4141 bool isInitialStep = true ;
4242 final bool _colored;
43- int _line_count = 0 ;
43+ int _lineCount = 0 ;
4444
4545 StepManager (this ._terminal, this ._colored);
4646
@@ -82,11 +82,11 @@ final class StepManager with TerminalTools {
8282 final buffer = StringBuffer ();
8383
8484 if (Platform .isWindows) {
85- _line_count += 1 ;
85+ _lineCount += 1 ;
8686 }
8787
8888 buffer.writeAnsiAll ([
89- CursorPosition .moveTo (_position! .$2 + _line_count , _position! .$1),
89+ CursorPosition .moveTo (_position! .$2 + _lineCount , _position! .$1),
9090 SetStyles (Style .foreground (Color .green)),
9191 Print ('✔ ' ),
9292 if (! _colored) SetStyles .reset,
@@ -102,11 +102,11 @@ final class StepManager with TerminalTools {
102102 final buffer = StringBuffer ();
103103
104104 if (Platform .isWindows) {
105- _line_count += 1 ;
105+ _lineCount += 1 ;
106106 }
107107
108108 buffer.writeAnsiAll ([
109- CursorPosition .moveTo (_position! .$2 + _line_count , _position! .$1),
109+ CursorPosition .moveTo (_position! .$2 + _lineCount , _position! .$1),
110110 SetStyles (Style .foreground (Color .yellow)),
111111 Print ('⚠ ' ),
112112 if (! _colored) SetStyles .reset,
@@ -122,11 +122,11 @@ final class StepManager with TerminalTools {
122122 final buffer = StringBuffer ();
123123
124124 if (Platform .isWindows) {
125- _line_count += 1 ;
125+ _lineCount += 1 ;
126126 }
127127
128128 buffer.writeAnsiAll ([
129- CursorPosition .moveTo (_position! .$2 + _line_count , _position! .$1),
129+ CursorPosition .moveTo (_position! .$2 + _lineCount , _position! .$1),
130130 SetStyles (Style .foreground (Color .red)),
131131 Print ('✘ ' ),
132132 if (! _colored) SetStyles .reset,
0 commit comments