name property

String name
final

Name of the author.

Example:


@override
Widget build(BuildContext context) {
 return SfChat(
   messages: [
     ChatMessage(
       author: ChatAuthor(name: 'Chat A'),
     ),
   ],
 );
}

Implementation

final String name;