label property
String
get
label
Implementation
String get label {
switch (this) {
case AppArchitecture.clean:
return 'Clean Architecture';
case AppArchitecture.mvvm:
return 'MVVM';
case AppArchitecture.featureFirst:
return 'Feature-first';
case AppArchitecture.simple:
return 'Simple (no architecture)';
}
}