RgbEntity constructor

RgbEntity({
  1. int? r,
  2. int? g,
  3. int? b,
  4. double? opacity,
})

Implementation

RgbEntity({
  this.r,
  this.g,
  this.b,
  this.opacity,
});