specialKeys method

  1. @override
List<String> specialKeys(
  1. String? short,
  2. String? long
)
override

Implementation

@override
List<String> specialKeys(String? short, String? long) {
  if (isNegateable == true && long != null) {
    return ['no-$long'];
  }

  return [];
}