init function
Implementation
Future<void> init() async {
// ========================================
// BLOC REGISTRATION
// ========================================
_registerBlocs();
// ========================================
// USE CASES REGISTRATION
// ========================================
_registerUseCases();
// ========================================
// REPOSITORY REGISTRATION
// ========================================
_registerRepositories();
// ========================================
// DATA SOURCES REGISTRATION
// ========================================
_registerDataSources();
}