matches method Null safety
- ProgramOperation key,
- bool userMode
override
Implementation
@override
Arg? matches(ProgramOperation key, bool userMode) {
if (this.userMode == userMode) {
return child.matches(key, userMode);
} else {
return null;
}
}