audioAttachmentOption method
Implementation
CometChatMessageComposerAction audioAttachmentOption(
CometChatTheme theme, BuildContext context) {
return CometChatMessageComposerAction(
id: MessageTypeConstants.audio,
title: Translations.of(context).audio,
iconUrl: AssetConstants.audio,
iconUrlPackageName: UIConstants.packageName,
titleStyle: TextStyle(
color: theme.palette.getAccent(),
fontSize: theme.typography.subtitle1.fontSize,
fontWeight: theme.typography.subtitle1.fontWeight),
iconTint: theme.palette.getAccent700(),
);
}