Skip to content

Commit

Permalink
refactor: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ookami-kb committed Apr 28, 2024
1 parent 4cb402c commit 2556cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/storybook_flutter/lib/src/plugins/logging.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract interface class Logger {

class LoggingNotifier extends ChangeNotifier implements Logger {
final _logs = <String>[];
var _panelVisible = false;
bool _panelVisible = false;

List<String> get logs => List.unmodifiable(_logs);

Expand All @@ -44,7 +44,7 @@ extension Logging on BuildContext {
Logger get logger => read<LoggingNotifier>();
}

Widget? _buildIcon(BuildContext context) => const Icon(
Widget _buildIcon(BuildContext context) => const Icon(
Icons.format_quote,
semanticLabel: 'Log output',
);
Expand Down

0 comments on commit 2556cde

Please sign in to comment.