GifToVideoTransformation constructor

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

Implementation

GifToVideoTransformation([this.transformations = const []])
    : assert(
        transformations.isNotEmpty
            ? transformations.every((transformation) =>
                _kGifToVideoAllowedTransfomations
                    .contains(transformation.runtimeType))
            : true,
        'You can apply only $_kGifToVideoAllowedTransfomations transformations',
      );