useDebugValue function

void useDebugValue(
  1. Object? value, [
  2. String format(
    1. Object? value
    )?
])

Associates debugging information with the current hook.

See https://react.dev/reference/react/useDebugValue.

Implementation

void useDebugValue(Object? value, [String Function(Object? value)? format]) =>
    currentReactRuntime.binding.useDebugValue(value, format);