kfiross / flutter_mongodb_realm

Unofficial Flutter plugin for using MongoDB Realm services on Android, iOS and web.
Apache License 2.0
41 stars 17 forks source link

How to return a null doc after query call #23

Closed ErnestDaDev closed 3 years ago

ErnestDaDev commented 3 years ago

i am trying to get a doc with code below, final doc = await _col.findOne( filter: { "email": email, }); but when the doc does not exist, it does not give a null doc but returns an error which says NoSuchMethodError: The getter 'length' was called on null.

How do i handle such errors?

Thanks!

kfiross commented 3 years ago

Thanks for the PR!