Skip to content

Commit de4fa82

Browse files
committed
fix: import dart:typed_data to accomodate Flutter 3.0
1 parent 2fd2cd6 commit de4fa82

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

flutter_local_notifications_linux/lib/src/notifications_manager.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
import 'dart:async';
22
import 'dart:io';
3+
// dart:typed_data is needed for Uint8List, until the project's minimum
4+
// Flutter SDK constraint is updated beyond 3.0.
5+
// ignore: unnecessary_import
6+
import 'dart:typed_data';
37

48
import 'package:collection/collection.dart';
59
import 'package:flutter/foundation.dart';

0 commit comments

Comments
 (0)