log function

void log(
  1. String content
)

Implementation

void log(String content) {
  if (fluttifyLogEnabled) debugPrint(content);
}