customStringTableName property

String? get customStringTableName

The string table to search. The string table must be part of the customBundle. If customStringTableName is nil or an empty string, ReadID UI uses Localizable.strings.

Implementation

String? get customStringTableName => _map["customStringTableName"] as String?;
set customStringTableName (String? value)

The string table to search. The string table must be part of the customBundle. If customStringTableName is nil or an empty string, ReadID UI uses Localizable.strings.

Implementation

set customStringTableName(String? value) =>
    _map["customStringTableName"] = value;