ArgumentValidator class abstract

Input argument validation utilities.

Provides standardized validation for common command arguments with descriptive error messages and resolution guidance.

Constructors

ArgumentValidator()

Properties

hashCode → int
The hash code for this object.
no setterinherited
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited

Static Methods

validateApplicationId(String? applicationId) → ValidationResult<String>
Validates application ID format.
validateAppName(String? name) → ValidationResult<String>
Validates application name format.
validateFeatureName(String? name) → ValidationResult<String>
Validates feature name format.
validatePageName(String? name) → ValidationResult<String>
Validates page name format.
validatePath(String? path, {bool mustExist = true}) → ValidationResult<String>
Validates file path existence and accessibility.