Skip to content

Commit

Permalink
fix: import dart:typed_data to accomodate Flutter 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Merrit committed May 10, 2023
1 parent 2fd2cd6 commit de4fa82
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import 'dart:async';
import 'dart:io';
// dart:typed_data is needed for Uint8List, until the project's minimum
// Flutter SDK constraint is updated beyond 3.0.
// ignore: unnecessary_import
import 'dart:typed_data';

import 'package:collection/collection.dart';
import 'package:flutter/foundation.dart';
Expand Down

0 comments on commit de4fa82

Please sign in to comment.