Module constructor

Module({
  1. String? addressRange,
  2. String? dateTimeStamp,
  3. required Either2<int, String> id,
  4. bool? isOptimized,
  5. bool? isUserCode,
  6. required String name,
  7. String? path,
  8. String? symbolFilePath,
  9. String? symbolStatus,
  10. String? version,
})

Implementation

Module({
  this.addressRange,
  this.dateTimeStamp,
  required this.id,
  this.isOptimized,
  this.isUserCode,
  required this.name,
  this.path,
  this.symbolFilePath,
  this.symbolStatus,
  this.version,
});