info function

void info(
  1. String message
)

A simple method for printing warning messages to the console.

Implementation

void info(String message) =>
    (Settings().debugLevel.index >= DebugLevel.info.index)
        ? print('[CAMS INFO] $message')
        : 0;