doneLoading method
dynamic
doneLoading(
- dynamic _
The function "doneLoading" is an asynchronous function in Dart that takes in an underscore (_) as a parameter.
Args: : The underscore symbol () is a placeholder for a parameter that is not used in the function. In this case, it is used as a placeholder for a parameter that represents the result of the loading process.
Implementation
doneLoading(_) async {
_isLoading.value = false;
setState(() {});
}