InteractiveFormsWidget constructor

const InteractiveFormsWidget({
  1. Key? key,
  2. required String content,
  3. dynamic onAction(
    1. String action,
    2. Map<String, dynamic> data
    )?,
  4. EdgeInsets? padding,
  5. Color? buttonColor,
  6. Color? textColor,
})

Implementation

const InteractiveFormsWidget({
  super.key,
  required this.content,
  this.onAction,
  this.padding,
  this.buttonColor,
  this.textColor,
});