defaultOnVideoInsertCallback function

OnVideoInsertCallback defaultOnVideoInsertCallback()

Implementation

OnVideoInsertCallback defaultOnVideoInsertCallback() {
  return (videoUrl, controller) async {
    controller
      ..skipRequestKeyboard = true
      ..insertVideoBlock(videoUrl: videoUrl);
  };
}