CallbackItem constructor

CallbackItem({
  1. required String callbackName,
  2. required Function callbackHandler,
  3. bool? takesArguments = true,
})

Implementation

CallbackItem({
  required this.callbackName,
  required this.callbackHandler,
  this.takesArguments = true,
});