getFlagDebug method

bool getFlagDebug()

Gets the debug flag value.

Returns true if the debug flag is set, false otherwise.

Example:

final isDebug = argResults.getFlagDebug();

Implementation

bool getFlagDebug() => this?['debug'] ?? false;