completer_ex 3.0.0 completer_ex: ^3.0.0 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/completer_ex.dart';
void main() {
/// If you have a normal Completer:
Completer<int>();
/// just replace it with a CompleterEx
CompleterEx<int>();
}