Flutter has code of the form ```dart typedef void GestureTapCancelCallback(); GestureTapCancelCallback onTapCancel; T invokeCallback<T>(String name, RecognizerCallback<T> callback, { String debugReport() }) { } main() { invokeCallback<Null>('spontaneous onTapCancel', onTapCancel); } ``` which leads to runtime errors in strong mode. All this code needs to be converted to use <void> (please see issue #31858 for more details).