LMChatIconBuilder typedef
LMChatIconBuilder =
Widget Function(BuildContext context, LMChatIcon icon)
The icon builder function for the chat screen. This function is called to build the icon for the chat screen. The LMChatIconBuilder function takes two parameters:
- BuildContext context: The context.
- LMChatIcon icon: The icon. The function returns a Widget.
Implementation
typedef LMChatIconBuilder = Widget Function(
BuildContext context,
LMChatIcon icon,
);