debugLabel method
Implementation
@protected
String debugLabel({
String? tag,
}) {
final providerName = runtimeType.toString();
return _debugLabel == null
? '$providerName${tag == null ? '' : '[$tag]'}'
: '$_debugLabel${tag == null ? '' : '[$tag]'}';
}