ButtonConfiguration constructor
ButtonConfiguration({
- bool visible = true,
- String text = "",
- BackgroundStyle? background,
- ForegroundStyle? foreground,
Implementation
ButtonConfiguration({
this.visible = true,
this.text = "",
BackgroundStyle? background,
ForegroundStyle? foreground,
}) : background = background ?? BackgroundStyle(),
foreground = foreground ?? ForegroundStyle();