printDebug method

void printDebug(
  1. dynamic data
)

Implementation

void printDebug(dynamic data) {
  if (kDebugMode) {
    print(data);
  }
}