debugLabel method

  1. @protected
String debugLabel({
  1. String? tag,
})

Implementation

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