allowInterop function
Implementation
dynamic allowInterop(Function f) {
// In web context, Dart functions can be passed directly to JavaScript
// This wrapper ensures compatibility with the expected interface
return f;
}
dynamic allowInterop(Function f) {
// In web context, Dart functions can be passed directly to JavaScript
// This wrapper ensures compatibility with the expected interface
return f;
}