start method
Starts the API logger and adds necessary observers.
Returns: A Future that completes when the logger is started.
Implementation
Future<void> start() async {
_setEnable(true);
WidgetsBinding.instance.addObserver(this);
_listenShake();
await _initMixin(sendText: _sendText);
}