log method

void log(
  1. String? text
)

Implementation

void log(String? text){
  _methodChannel?.invokeMethod("onFlutterLog", text);
}