PowerTextureImageInfo constructor

PowerTextureImageInfo({
  1. int? textureId,
  2. int? width,
  3. int? height,
  4. required Image image,
  5. double scale = 1.0,
  6. String? debugLabel,
})

Implementation

PowerTextureImageInfo(
    {this.textureId,
    this.width,
    this.height,
    required ui.Image image,
    double scale = 1.0,
    String? debugLabel})
    : super(image: image, scale: scale, debugLabel: debugLabel);