registerAll method
Registers multiple controls at once.
Implementation
void registerAll(Map<String, AbstractControl> newControls) {
for (final entry in newControls.entries) {
register(entry.key, entry.value);
}
}
Registers multiple controls at once.
void registerAll(Map<String, AbstractControl> newControls) {
for (final entry in newControls.entries) {
register(entry.key, entry.value);
}
}