Skip to content

Commit 2a07d96

Browse files
committed
bump min Flutter to 3.27.0
1 parent 3b95a65 commit 2a07d96

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

lib/flutter_downloader.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
///
1010
/// * author: hunghd
1111
/// * email: [email protected]
12-
13-
library flutter_downloader;
12+
library;
1413

1514
export 'src/downloader.dart';
1615
export 'src/exceptions.dart';

lib/src/downloader.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// In some cases, it's hard to get around calls on 'dynamic'.
12
// ignore_for_file: avoid_dynamic_calls
23

34
import 'dart:async';
@@ -438,6 +439,7 @@ class FlutterDownloader {
438439
/// Prints [message] to console if [_debug] is true.
439440
static void _log(String? message) {
440441
if (_debug) {
442+
// Using print here seeems good enough.
441443
// ignore: avoid_print
442444
print(message);
443445
}

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ flutter:
1515
pluginClass: FlutterDownloaderPlugin
1616

1717
environment:
18-
sdk: ">=3.3.0 <4.0.0"
19-
flutter: ">=3.19.0"
18+
sdk: ">=3.6.0 <4.0.0"
19+
flutter: ">=3.27.0"
2020

2121
dependencies:
2222
flutter:
@@ -25,4 +25,4 @@ dependencies:
2525
dev_dependencies:
2626
flutter_test:
2727
sdk: flutter
28-
leancode_lint: ^12.1.0
28+
leancode_lint: ^15.0.0

0 commit comments

Comments
 (0)