WasmFeatures constructor

const WasmFeatures({
  1. required bool mutableGlobal,
  2. required bool saturatingFloatToInt,
  3. required bool signExtension,
  4. required bool referenceTypes,
  5. required bool multiValue,
  6. required bool bulkMemory,
  7. required bool simd,
  8. required bool relaxedSimd,
  9. required bool threads,
  10. required bool tailCall,
  11. required bool floats,
  12. required bool multiMemory,
  13. required bool exceptions,
  14. required bool memory64,
  15. required bool extendedConst,
  16. required bool componentModel,
  17. required bool functionReferences,
  18. required bool memoryControl,
  19. required bool gc,
})

Implementation

const WasmFeatures({
  required this.mutableGlobal,
  required this.saturatingFloatToInt,
  required this.signExtension,
  required this.referenceTypes,
  required this.multiValue,
  required this.bulkMemory,
  required this.simd,
  required this.relaxedSimd,
  required this.threads,
  required this.tailCall,
  required this.floats,
  required this.multiMemory,
  required this.exceptions,
  required this.memory64,
  required this.extendedConst,
  required this.componentModel,
  required this.functionReferences,
  required this.memoryControl,
  required this.gc,
});