GifToVideoTransformation constructor

GifToVideoTransformation([
  1. List<VideoTransformation> transformations = const []
])

Implementation

GifToVideoTransformation([this.transformations = const []])
    : assert(
          transformations.isNotEmpty
              ? transformations.every((transformation) =>
                  transformation is VideoFormatTransformation ||
                  transformation is QualityTransformation)
              : true,
          'You can apply only format or quality transformations');