match method

  1. @override
bool match(
  1. String platform, [
  2. String? target
])
override

Implementation

@override
bool match(String platform, [String? target]) {
  return this.platform == platform && this.target == target;
}