RivaanRanawat / instagram-flutter-clone

Responsive Instagram Clone developed with Flutter & Firebase
https://youtu.be/BBccK1zTgxw
858 stars 474 forks source link

class AuthMetods methods conditions #9

Closed bedfir closed 1 year ago

bedfir commented 2 years ago

I think you have made a mistake on both methods loginUser and signUpUser you have used operator OR instead of AND. therefore the fields are not required.

` if (email.isNotEmpty || password.isNotEmpty || username.isNotEmpty || bio.isNotEmpty || file != null) {

return "Only one fiield are required with the || operator";

} `

jinosh05 commented 1 year ago

Check my Fork for fixing the issue