printF function

void printF(
  1. Object? object
)

Implementation

void printF(Object? object) {
  if (kDebugMode) {
    print(object);
  }
}