6 lines
203 B
Dart
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();
|
|
}
|