Callbacks constructor

Callbacks({
  1. void onBeforeCommand(
    1. String?
    )?,
  2. void onChangeContent(
    1. String?
    )?,
  3. void onChangeCodeview(
    1. String?
    )?,
  4. void onChangeSelection(
    1. EditorSettings
    )?,
  5. void onDialogShown()?,
  6. void onEnter()?,
  7. void onFocus()?,
  8. void onBlur()?,
  9. void onBlurCodeview()?,
  10. void onImageLinkInsert(
    1. String?
    )?,
  11. void onImageUpload(
    1. FileUpload
    )?,
  12. void onImageUploadError(
    1. FileUpload?,
    2. String?,
    3. UploadError
    )?,
  13. void onInit()?,
  14. void onKeyUp(
    1. int?
    )?,
  15. void onKeyDown(
    1. int?
    )?,
  16. void onMouseUp()?,
  17. void onMouseDown()?,
  18. FutureOr<NavigationActionPolicy> onNavigationRequestMobile(
    1. String
    )?,
  19. void onPaste()?,
  20. void onScroll()?,
})

Implementation

Callbacks({
  this.onBeforeCommand,
  this.onChangeContent,
  this.onChangeCodeview,
  this.onChangeSelection,
  this.onDialogShown,
  this.onEnter,
  this.onFocus,
  this.onBlur,
  this.onBlurCodeview,
  this.onImageLinkInsert,
  this.onImageUpload,
  this.onImageUploadError,
  this.onInit,
  this.onKeyUp,
  this.onKeyDown,
  this.onMouseUp,
  this.onMouseDown,
  this.onNavigationRequestMobile,
  this.onPaste,
  this.onScroll,
});