Edid constructor

Edid({
  1. required String manufacturerId,
  2. required String productId,
  3. required int yearOfManufacture,
})

Implementation

Edid({
  /// 3 character manufacturer code. See Sec. 3.4.1 page 21. Required in v1.4.
  required String manufacturerId,

  /// 2 byte manufacturer-assigned code, Sec. 3.4.2 page 21. Required in v1.4.
  required String productId,

  /// Year of manufacturer, Sec. 3.4.4 page 22. Required in v1.4.
  required int yearOfManufacture,
}) : _wrapped = $js.Edid(
        manufacturerId: manufacturerId,
        productId: productId,
        yearOfManufacture: yearOfManufacture,
      );