KernelInfo constructor

KernelInfo({
  1. KernelInfoType? type,
  2. int? width,
  3. int? height,
  4. int? x,
  5. int? y,
  6. Float64List? values,
  7. double? minimum,
  8. double? maximum,
  9. double? negativeRange,
  10. double? positiveRange,
  11. double? angle,
  12. KernelInfo? next,
  13. int? signature,
})

Implementation

KernelInfo({
  this.type,
  this.width,
  this.height,
  this.x,
  this.y,
  this.values,
  this.minimum,
  this.maximum,
  this.negativeRange,
  this.positiveRange,
  this.angle,
  this.next,
  this.signature,
});