warning method

  1. @override
Future<void> warning(
  1. String message, {
  2. String groupId = '',
  3. String? source,
  4. String? timestamp,
})
override

Implementation

@override
Future<void> warning(String message,
    {String groupId = '', String? source, String? timestamp}) async {
  source ??= Trace.current(1).logLine();
  await log('WARNING', message,
      groupId: groupId, source: source, timestamp: timestamp);
}