The lint prefer_void_to_null reports issue with the following code: ``` abstract class A { dynamic get foo; } class B extends A { @override Null get foo => null; } ```