info method

void info(
  1. String title, {
  2. String? body,
})

Logs an info message.

Use this to print status updates for the user to see.

Implementation

void info(String title, {String? body}) {
  logger.i(getMessage(title, body));
  final log = BurtLog(level: BurtLogLevel.info, title: title, body: body, device: device);
  socket?.sendLog(log);
}