Future<void> chainAsync( final Future<void> Function() ch1, final Future<void> Function() ch2, ) async { await ch1(); await ch2(); }