Skip to content

Instantly share code, notes, and snippets.

@WingCH
WingCH / image_remove_backgroun.dart
Created June 5, 2022 03:37 — forked from plateaukao/image_remove_backgroun.dart
image remove background in flutter
Future<Uint8List> _downloadImage() async {
String dir = (await getApplicationDocumentsDirectory()).path;
File file = new File('$dir/$_filename');
if (file.existsSync()) {
var image = await file.readAsBytes();
return image;
} else {
var response = await http.get(_url,);
var bytes = response.bodyBytes;