log static method

dynamic log([
  1. dynamic value
])

Implementation

static log([value]) {
  print(value ?? "");
}