NavMapperModule constructor

NavMapperModule({
  1. required String name,
  2. List<NavModule> localModules = const [],
  3. List<NavModule> remoteModules = const [],
  4. Map<String, dynamic> dependencies = const {},
})

Implementation

NavMapperModule({
  required this.name,
  this.localModules = const [],
  this.remoteModules = const [],
  this.dependencies = const {},
});