HashPixel constructor

const HashPixel({
  1. required int r,
  2. required int g,
  3. required int b,
  4. required int a,
})

Implementation

const HashPixel({
  required this.r,
  required this.g,
  required this.b,
  required this.a,
});