TDDialogButtonOptions constructor

TDDialogButtonOptions({
  1. required String title,
  2. required dynamic action(),
  3. Color? titleColor,
  4. TDButtonStyle? style,
  5. TDButtonType? type,
  6. TDButtonTheme? theme,
  7. double? height,
  8. FontWeight? fontWeight,
})

Implementation

TDDialogButtonOptions({
  required this.title,
  required this.action,
  this.titleColor,
  this.style,
  this.type,
  this.theme,
  this.height,
  this.fontWeight,
});