printDebug method

dynamic printDebug(
  1. Object? object
)

Implementation

printDebug(Object? object){
  if(kDebugMode){
    print(object);
  }
}