InputTextAction constructor

const InputTextAction({
  1. Key? key,
  2. required ActionItem action,
  3. required VoidCallback onTap,
  4. required bool enable,
})

Implementation

const InputTextAction(
    {Key? key,
    required this.action,
    required this.onTap,
    required this.enable})
    : super(key: key);