addLog method

Future<void> addLog(
  1. String event
)

Implementation

Future<void> addLog(String event) async {
  await methodChannel.invokeMethod<bool>('setLog', {"event": event});
}