startLoading method

dynamic startLoading(
  1. dynamic _
)

The function "startLoading" takes an argument (_) and does not have any code implemented yet.

Args: : The underscore symbol () is often used as a placeholder for a variable or parameter that is not needed or used in a particular context. In this case, it is being used as a placeholder for a parameter that is not needed for the startLoading function.

Implementation

startLoading(_) {
  _isLoading.value = true;
  setState(() {});
}