debugPrint function

void debugPrint(
  1. Object? object
)

Implementation

void debugPrint(Object? object){
  // ignore: avoid_print
  //const bool kDebugMode = bool.fromEnvironment('dart.vm.product') == false;if(kDebugMode) print(object);
}