Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.7k views
in Technique[技术] by (71.8m points)

flutter - The method 'toLowerCase' was called on null. Receiver: null Tried calling: toLowerCase()

I am getting this error in my code and i dont know how to fix:

The method 'toLowerCase' was called on null.
    Receiver: null
    Tried calling: toLowerCase()

this is where the error is coming from

buildSuggestions(String query){
    final List<UbuildSuggestions(String query){
    final List<UserName> suggestionList = query.isEmpty
        ? []
        : userList.where((UserName user) {
          String _getUsername = user.username.toLowerCase();
          String _query = query.toLowerCase();
          String _getName = user.name.toLowerCase();
          bool matchesUsername = _getUsername.contains(_query);
          bool matchesName = _getName.contains(_query);

          return (matchesUsername || matchesName);
    }).toList();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

try

  String _getUsername = (user?.username??"").toLowerCase();
  String _query = (query??"").toLowerCase();
  String _getName = (user?.name??"").toLowerCase();

If the object is null, it will pass the empty string


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...