flutter_background_service
flutter_background_service copied to clipboard
W/FlutterJNI(16445): Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel: PHONE_STATE_STREAM. Response ID: 34
Am using the phone_state plugin
PhoneState.stream.listen((event) {
if (event != null) {
log(event.number.toString());
service.invoke(
'update',
{
"current_date": DateTime.now().toIso8601String(),
"number": event.number,
},
);
}
});