VlcSubtitleColor.rgb constructor

const VlcSubtitleColor.rgb({
  1. int red = 0,
  2. int green = 0,
  3. int blue = 0,
})

Implementation

const VlcSubtitleColor.rgb({
  int red = 0,
  int green = 0,
  int blue = 0,
}) : value = (red << 16) + (green << 8) + blue;