Skip to content

Commit

Permalink
maint: Put required argument first
Browse files Browse the repository at this point in the history
  • Loading branch information
spydon committed Dec 7, 2023
1 parent 2409ab9 commit ec3d56d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/ubuntu_widgets/lib/src/log_view.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// ignore_for_file: always_put_required_named_parameters_first

import 'dart:async';

import 'package:flutter/material.dart';
Expand All @@ -8,13 +6,13 @@ import 'package:flutter/material.dart';
class LogView extends StatefulWidget {
/// Creates a log view. A stream of [log] lines is required.
const LogView({
super.key,
required this.log,
this.maxLines,
this.padding,
this.decoration,
this.background,
this.style,
super.key,
});

/// The stream of log lines to show.
Expand Down

0 comments on commit ec3d56d

Please sign in to comment.