isValid property

bool get isValid

Validates if the configuration has the minimum required fields.

Returns true if both appName and packageName are non-empty strings.

Implementation

bool get isValid =>
    (appName?.isNotEmpty ?? false) && (packageName?.isNotEmpty ?? false);