effectiveSourceLocale property

String get effectiveSourceLocale

Implementation

String get effectiveSourceLocale {
  final source = sourceLocale?.trim();
  if (source == null || source.isEmpty) {
    return fallbackLocale;
  }
  return source;
}