printLogByDebug function

dynamic printLogByDebug(
  1. Object? object
)

Implementation

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