getSection method
Get a section by name.
Implementation
ProfileSection? getSection(String name) {
return sections.where((s) => s.name == name).firstOrNull;
}
Get a section by name.
ProfileSection? getSection(String name) {
return sections.where((s) => s.name == name).firstOrNull;
}