printer function

dynamic printer(
  1. dynamic value
)

Implementation

printer(dynamic value) {
  if (kDebugMode) {
    print(value);
  }
}