handle method
Implementation
bool handle(String name, dynamic variable) {
bool showWarnings = false;
if (variable != null && enabled && showWarnings) {
warn("Argument \"$name\" cannot be used with ${this.name} on platform ${kIsWeb ? "web:native" : kIsWasm ? "web:wasm" : Platform.operatingSystem}.");
return false;
} else {
return true;
}
}