info static method

void info(
  1. dynamic data, {
  2. String tag = 'Reactive',
})

Logs the provided data with an optional tag.

The data parameter represents the information to be logged. The tag parameter specifies the tag to associate with the log. By default, the tag is set to 'Reactive'.

Implementation

static void info(dynamic data, {String tag = 'Reactive'}) {
  log('$data', name: tag);
}