hasArgument method

bool hasArgument(
  1. String name
)

Whether the user has inputted a value for an argument with the name name.

Implementation

bool hasArgument(String name) => existingArguments.containsKey(name);