getFlagProfile method
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;Gets the profile flag value.
Returns true if the profile flag is set, false otherwise.
Example:
final isProfile = argResults.getFlagProfile();
bool getFlagProfile() => this?['profile'] ?? false;