hasParameter method

bool hasParameter(
  1. String parameter
)

Checks of this return options has the specified parameter

Implementation

bool hasParameter(String parameter) =>
    parameters?.contains(parameter) ?? false;