mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-17 22:29:15 +00:00
9 lines
312 B
Dart
9 lines
312 B
Dart
import 'package:selfprivacy/logic/cubit/app_config/app_config_cubit.dart';
|
|
|
|
/// it's ui helpers use only for ui components, don't use for logic components.
|
|
|
|
class UiHelpers {
|
|
static String getDomainName(AppConfigState config) =>
|
|
config.isDomainFilled ? config.serverDomain!.domainName : 'example.com';
|
|
}
|