register method
Registers analysis rules, quick fixes, and assists.
Implementation
@override
void register(PluginRegistry registry) {
var rule = PickerItemValueNotifierCatchRethrow();
registry.registerWarningRule(rule);
registry.registerFixForRule(
PickerItemValueNotifierCatchRethrow.code,
AddRethrowInCatchFix.new,
);
}