debugprint function

dynamic debugprint(
  1. Object? object
)

Implementation

debugprint(Object? object) {
  if (kDebugMode) {
    print("TT_LOGBEGIN");
    print(object);
    print("TT_LOGEND");
  }
}