mounted method

bool mounted({
  1. String? tag,
})

check if the current provider has a valid Element value into the ProvidersContainer

Implementation

bool mounted({
  String? tag,
}) {
  return containerElements[getKey(tag)]?.value != null;
}