appLog function

void appLog(
  1. dynamic text
)

Implementation

void appLog(dynamic text) {
  if (kDebugMode) debugPrint(text.toString());
}