locale property
String?
get
locale
Custom language locale code of DocumentReaderSDK. If empty or doesn't exist - app language is used. Format "en-US" or "en".
Implementation
String? get locale => _locale;
set
locale
(String? val)
Implementation
set locale(String? val) {
_locale = val;
_setLocale(val);
}