clone method

Image clone({
  1. bool noAnimation = false,
  2. bool noPixels = false,
})

Create a copy of this image.

Implementation

Image clone({bool noAnimation = false, bool noPixels = false}) =>
    Image.from(this, noAnimation: noAnimation, noPixels: noPixels);