setLogFunction static method

void setLogFunction(
  1. dynamic function(
    1. String message
    )?
)

Implementation

static void setLogFunction(Function(String message)? function) {
  _onLogFunction = function;
}