DocumentVersionReport constructor

DocumentVersionReport({
  1. required bool isSupported,
  2. int? major,
  3. int? minor,
  4. required dynamic raw,
})

Implementation

DocumentVersionReport({
  required this.isSupported,
  this.major,
  this.minor,
  required this.raw,
});