1. override
void m1()

This is a method.

new Apple().m1();

Source

@override
void m1() {
  var a = 6;
  var b = a * 9;
  b * 2;
}