match method
Validates the conditions for the given DarwinSystem.
Implementation
@override
FutureOr<bool> match(DarwinSystem system) {
if (inverse) {
return system.profile != profile;
} else {
return system.profile == profile;
}
}
Validates the conditions for the given DarwinSystem.
@override
FutureOr<bool> match(DarwinSystem system) {
if (inverse) {
return system.profile != profile;
} else {
return system.profile == profile;
}
}