PromptButtonTheme constructor

const PromptButtonTheme({
  1. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 16),
  2. Icon? icon,
  3. EdgeInsets iconPadding = const EdgeInsets.all(8.0),
  4. double? elevation,
  5. Color? color,
})

Custom prompt button theme to be given to a ScrollWrapper.

Implementation

const PromptButtonTheme({
  this.padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 16),
  this.icon,
  this.iconPadding = const EdgeInsets.all(8.0),
  this.elevation,
  this.color,
});