KaomojiLumberdash constructor

KaomojiLumberdash({
  1. void printCall(
    1. Object?
    ) = print,
})

If you desire you can pass a function that will be responsible for printing Pong messages.

By default it uses Dart top-level print function.

Implementation

KaomojiLumberdash({
  final void Function(Object?) printCall = print,
}) : _print = printCall;