What is the main difference between:
Future<void> function(){}Future<Null> function(){}void function() {}funtion(){}
Sometimes I use void or future when calling the API but I don't really know what the main difference is and when is the right time to use it?