isWasmName function

bool isWasmName(
  1. String name
)

Whether the name appears to be a WebAssembly module.

Implementation

bool isWasmName(String name) => name.endsWith('.wasm');