matchString method

bool matchString(
  1. String s, [
  2. String? s2,
  3. String? s3,
  4. String? s4,
  5. String? s5,
])

Returns whether the keystroke matches any of the given strings.

Implementation

bool matchString(
  String s, [
  String? s2,
  String? s3,
  String? s4,
  String? s5,
]) => _key.matchString(s, s2, s3, s4, s5);