Is it possible to declare a method as final in a class in Dart? - Stack Overflow
[https://stackoverflow.com/questions/63984838/is-it-possible-to-declare-a-method-as-final-in-a-class-in-dart] - - public:mzimmerm
Dart cannot use 'final' to prevent a method from being overriden. It uses a meta annotation @nonvirtual to prevent overriding. But it is just a hint.