buttonHeight property
double?
get
buttonHeight
Height for the buttons. Set isDynamicTypeEnabled to false to be able to configure the height of the buttons. The height should be between 48 and 100 points. Defaults to 48.
Implementation
double? get buttonHeight => _map["buttonHeight"] as double?;
set
buttonHeight
(double? value)
Height for the buttons. Set isDynamicTypeEnabled to false to be able to configure the height of the buttons. The height should be between 48 and 100 points. Defaults to 48.
Implementation
set buttonHeight(double? value) => _map["buttonHeight"] = value;