CustomComponentAgent constructor

const CustomComponentAgent({
  1. required dynamic responseData,
  2. required dynamic onButtonPressed(
    1. String
    ),
  3. Key? key,
  4. required String message,
})

Implementation

const CustomComponentAgent({
  required this.responseData,
  required this.onButtonPressed,
  Key? key,
  required this.message,
}) : super(key: key);