fadeOut static method

FadeOut fadeOut([
  1. int? duration
])

Fade out at the end of the video.

For details and examples, see 'Fade in and out' in the Video Transformations guide. see https://cloudinary.com/documentation/video_manipulation_and_delivery#fade_in_and_out Receives int returns Effect

Implementation

static FadeOut fadeOut([int? duration]) {
  return FadeOut(duration);
}