completer_ex 1.0.1 completer_ex: ^1.0.1 copied to clipboard
A wrapper for Completer which logs when the completer doesn't complete in a timel manner.
import 'dart:async';
import 'package:completer_ex/src/completer_ex.dart';
void main() {
/// If you have a normal Completer:
Completer<int>();
/// just replace it with a CompleterEx
CompleterEx<int>();
}