DocumentVersionException constructor

DocumentVersionException({
  1. required String code,
  2. required String message,
  3. required String rawVersion,
  4. int? major,
  5. int? minor,
  6. dynamic details,
})

Implementation

DocumentVersionException({
  required super.code,
  required super.message,
  required this.rawVersion,
  this.major,
  this.minor,
  super.details,
});