Version constructor

Version({
  1. String? createTime,
  2. String? description,
  3. String? scriptId,
  4. int? versionNumber,
})

Implementation

Version({
  this.createTime,
  this.description,
  this.scriptId,
  this.versionNumber,
});