Skip to content

Instantly share code, notes, and snippets.

View lucdotdev's full-sized avatar
🎯
Focusing

lucdotdev lucdotdev

🎯
Focusing
View GitHub Profile
@lucdotdev
lucdotdev / flutter_web_file_picker.dart
Created February 9, 2021 22:33
flutter web file picker image, audio
// ignore: avoid_web_libraries_in_flutter
import 'dart:html' as html;
class MyFile {
///@data return a Uint8List of bytes so we can use it in multiparthttp request
final dynamic data;
final String name;
final String dataScheme;
final int type;