ExternalLibrary constructor

const ExternalLibrary({
  1. required String debugInfo,
  2. String wasmBindgenName = 'wasm_bindgen',
})

This is only intended to be used by automatically generated code, instead of developers.

Implementation

const ExternalLibrary({
  required super.debugInfo,
  this.wasmBindgenName = 'wasm_bindgen',
});