createPresentationLayer method
Creates all presentation layer components for the page.
Generates directories and implementation files for:
- BLoC components
- Cubit components
- Page widgets
- Custom widgets
Parameters:
config: Configuration containing generation parameters
Implementation
void createPresentationLayer(PageConfig config) {
_createPresentationBloc(config);
_createPresentationCubit(config);
_createPresentationPage(config);
_createPresentationWidget(config);
}