builder method
Widget
builder(
- BuildContext ctx,
- bool showUserAvatar,
- bool showMessageStatus,
- bool showUsername,
- User loggedInUser,
- ChatTheme theme,
- AuthorDetailsLocation authorDetailsLocation,
override
Implementation
@override
Widget builder(
BuildContext ctx,
bool showUserAvatar,
bool showMessageStatus,
bool showUsername,
User loggedInUser,
ChatTheme theme,
AuthorDetailsLocation authorDetailsLocation) {
return Padding(
padding: theme.actionMessageMargin,
child: Text(
text,
style: theme.actionMessageTextStyle,
textAlign: TextAlign.center,
),
);
}