printLogs function

dynamic printLogs(
  1. String message
)

Implementation

printLogs(String message) {
  String currentDate = currentDateFormat.format(DateTime.now());
  if (kDebugMode) {
    print("${Strings.printLogLabel} ($currentDate): $message");
  }
}