matches method

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

Implementation

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