printD function

void printD(
  1. dynamic value
)

Implementation

void printD(dynamic value) {
  if (kDebugMode) {
    print(value);
  }
}