This is a plugin made for flutter to read incoming sms on the device as a broadcast stream.
Following steps describe how to use the plugin ReadSms :-
final plugin = ReadSms();
plugin.read();
plugin.smsStream.listen((sms){
print(sms.body);
print(sms.sender);
print(sms.timeReceived);
});
That's all you need to do.