debugLazy static method

void debugLazy(
  1. String messageBuilder(), {
  2. String? tag,
  3. Object? error,
  4. StackTrace? stackTrace,
  5. Map<String, dynamic>? context,
})

Debug with lazy evaluation

Implementation

static void debugLazy(String Function() messageBuilder,
    {String? tag,
    Object? error,
    StackTrace? stackTrace,
    Map<String, dynamic>? context}) {
  _defaultLogger.debugLazy(messageBuilder,
      tag: tag, error: error, stackTrace: stackTrace, context: context);
}