section property
String
get
section
Section getter.
Implementation
String get section {
final parts = key.split('/');
return parts.length > 1 ? parts.first : '';
}
Section getter.
String get section {
final parts = key.split('/');
return parts.length > 1 ? parts.first : '';
}