matches method

  1. @override
bool matches(
  1. String text
)
override

Implementation

@override
bool matches(String text) => "$name $description $defaultValue ${reader()}"
    .toLowerCase()
    .contains(text.toLowerCase());