flutter_mentions icon indicating copy to clipboard operation
flutter_mentions copied to clipboard

NoSuchMethodError: the Method 'toLowerCase' was called on null

Open florian-sabonchi opened this issue 2 years ago • 2 comments

photo_2022-06-17_16-19-23

florian-sabonchi avatar Jun 17 '22 14:06 florian-sabonchi

did you solve it ??

ebrahim2222 avatar Jun 23 '22 14:06 ebrahim2222

This error occurs when you fail to pass in display as a property in your data. When passing your data, you need to provide two required properties id & display both are String. Example -

data: [
        {
          "id": "61as61fsa",
          "display": "fayeedP",
          "photo": "https://images.pexels.com/photos/220453/pexels-photo-220453.jpeg"
        },
      
      ],

Excluding id or display will cause an error which is what you are experiencing.

Daliseiy avatar Oct 05 '22 17:10 Daliseiy