how can i cancel Future.delayed
i am using Future.delayed for some task, but if i want to cancel this delayed task, so is their any method or any other things to use.
Future.delayed(Duration(seconds: 10),(){
setState(() {
//some method calling
});
});