build method
The Widget build method, don't override this method instead use builder.
If do you override this than you'll lose the global context.
Implementation
@override
@protected
Widget build(final BuildContext context) {
viewModel._context = context;
return builder()!;
}