debugPrint function

void debugPrint(
  1. Object? object
)

Implementation

void debugPrint(Object? object){
  // ignore: avoid_print
  if(kDebugMode) print(object);
}