Skip to content

Instantly share code, notes, and snippets.

View stMerlHin's full-sized avatar

st merlhin stMerlHin

View GitHub Profile
@stMerlHin
stMerlHin / http_upload_with_progress.dart
Created August 22, 2022 13:17 — forked from orestesgaolin/http_upload_with_progress.dart
How to upload file to S3 with http library and progress updates (Flutter/Dart)
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:meta/meta.dart';
import 'package:mime/mime.dart';
import 'package:path/path.dart';
import 'package:http/http.dart' as http;
abstract class ApiClient {