showTimestamp property

  1. @override
bool showTimestamp
final

The showTimestamp property is to determines whether the time stamp is displayed or not.

Defaults to false.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    requestBubbleSettings: const AssistBubbleSettings(
      showTimestamp: true,
     ),
    responseBubbleSettings: const AssistBubbleSettings(
      showTimestamp: true,
    ),
  );
}

Implementation

@override
final bool showTimestamp;