init method

  1. @override
void init(
  1. Map args
)
override

Init is typically called right after constructor by framework. args - Arguments passed from parent or through Factory.

Implementation

@override
void init(Map args) {
  printDebug('CORE $this: init --- $args');
  super.init(args);
}