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