getFlagProfile method

bool getFlagProfile()

Gets the profile flag value.

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

Example:

final isProfile = argResults.getFlagProfile();

Implementation

bool getFlagProfile() => this?['profile'] ?? false;