platform/packages/contracts/lib/src/translation/has_local_preferences.dart
2024-06-16 09:53:05 -07:00

6 lines
203 B
Dart

abstract class HasLocalePreference {
/// Get the preferred locale of the entity.
///
/// Returns a [String] representing the preferred locale or null if none is set.
String? preferredLocale();
}