Closed
Description
Flutter has code of the form
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
(please see issue #31858 for more details).