getData property

FutureOr<LanguageData> Function(LanguageCodes code) getData

Get the LanguageData based on the code.

Implementation

FutureOr<LanguageData> Function(LanguageCodes code) get getData =>
    _getData == null ? (code) => Future.value({}) : _getData!;