FriendsWordsCell constructor

const FriendsWordsCell({
  1. Key? key,
  2. required String words,
  3. required Color textColor,
})

Implementation

const FriendsWordsCell(
    {Key? key, required String words, required Color textColor})
    : _words = words,
      _textColor = textColor,
      super(key: key);