setIsLoadingByTag method

  1. @override
  2. @protected
void setIsLoadingByTag(
  1. String tag,
  2. bool value
)
override

PROTECTED

Works the same like the protected isLoading setter, but implemented to set the value for a specific tag.

Implementation

@override
@protected
void setIsLoadingByTag(String tag, bool value,) {
  final isLoading = _extraIsLoadings[tag] ??= false.obs;
  isLoading.value = value;
}