match method

Future<bool> match(
  1. DarwinSystem system
)

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);
}