mirror of
https://github.com/foss42/apidash.git
synced 2025-05-20 07:46:32 +08:00
7 lines
130 B
Dart
7 lines
130 B
Dart
String getEnvironmentTitle(String? name) {
|
|
if (name == null || name.trim() == "") {
|
|
return "untitled";
|
|
}
|
|
return name;
|
|
}
|