printInfo method

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

Print information to the console

Implementation

void printInfo({String? info, String? title}) {
  log('$title $info', isError: false);
}