canAcceptArguments abstract method
Checks if named arguments can be accepted.
Parameters:
arguments: Map of argument names to values
Returns:
trueif:- All required parameters are provided
- No extra unknown parameters exist
- Types are compatible
falseotherwise
Example:
canAcceptArguments({'name': 'Alice', 'age': 30})
Implementation
bool canAcceptArguments(Map<String, dynamic> arguments);