Flushbar( title: 'title',
message: 'ok',
flushbarPosition: FlushbarPosition.TOP,
duration: const Duration(seconds: 2),
animationDuration: Duration.zero,
).show(context);
While trying to disable animation by setting animationDuration : Duration.zero caused the exception
package:flutter/src/widgets/navigator.dart': Failed assertion: line 5295 pos 12: '!_debugLocked': is not true
Had searched for solution, however, I couldn't find one. Is there a solution of this issue?