Describe the bug
A clear and concise description of what the bug is.
Informing the duration in the message, it is not respecting the time, it seems that the time is 2 seconds and closes the message. So you should respect the time that was informed. For the message to be in the correct time, I'm having to put it in the future.delay
await EasyLoading.showSuccess('Download!',
duration: const Duration(seconds: 10));
await Future.delayed(const Duration(seconds: 10));
Describe the bug
A clear and concise description of what the bug is.
Informing the duration in the message, it is not respecting the time, it seems that the time is 2 seconds and closes the message. So you should respect the time that was informed. For the message to be in the correct time, I'm having to put it in the future.delay
await EasyLoading.showSuccess('Download!',
duration: const Duration(seconds: 10));