match method
Implementation
Future<bool> match(DarwinSystem system) async {
var conditionValues =
await Future.wait(map((x) async => await x.match(system)));
return conditionValues.every((element) => element == true);
}
Future<bool> match(DarwinSystem system) async {
var conditionValues =
await Future.wait(map((x) async => await x.match(system)));
return conditionValues.every((element) => element == true);
}