printLogs function

dynamic printLogs(
  1. String message
)

Implementation

printLogs(String message) {
  String currentDate = currentDateFormat.format(DateTime.now());
  if (kDebugMode) {
    print("LOG FROM MENSTRUAL CYCLE ($currentDate): $message");
  }
}