isEmpty property
bool
get
isEmpty
Returns whether this invocation passes no arguments.
Implementation
bool get isEmpty => positional.isEmpty && named.isEmpty && rest == null;
Returns whether this invocation passes no arguments.
bool get isEmpty => positional.isEmpty && named.isEmpty && rest == null;