size property
Size of the button.
Defaults to Size.square(40.0)
.
Example:
@override
Widget build(BuildContext context) {
return SfChat(
actionButton: ChatActionButton(
size: Size(50.0, 50.0),
),
);
}
Implementation
final Size size;