headerPadding property

  1. @override
EdgeInsetsGeometry headerPadding
final

Padding for the header.

Example:

@override
Widget build(BuildContext context) {
  return SfAIAssistView(
    requestBubbleSettings: const AssistBubbleSettings(
       headerPadding:
           EdgeInsetsDirectional.only(top: 14.0, bottom: 4.0),
     ),
     responseBubbleSettings: const AssistBubbleSettings(
       headerPadding:
           EdgeInsetsDirectional.only(top: 14.0, bottom: 4.0),
     ),
  );
}

Implementation

@override
final EdgeInsetsGeometry headerPadding;