BitmapDataLoadOptions clone()

Create a deep clone of this BitmapDataLoadOptions.

Source

BitmapDataLoadOptions clone() {
  var options = new BitmapDataLoadOptions();
  options.png = this.png;
  options.jpg = this.jpg;
  options.webp = this.webp;
  options.maxPixelRatio = this.maxPixelRatio;
  options.corsEnabled = this.corsEnabled;
  return options;
}