contributor nme

 avatar
unknown
dart
3 years ago
680 B
3
Indexable
    contributorName = book.authors!.isEmpty
        ? 'احمد زكي'
        : context.locale == const Locale('ar')
            ? book.authors!.first.fullNameDecode!.first.firstNameAr! +
                ' ' +
                book.authors!.first.fullNameDecode!.last.lastNameAr!
            : context.locale == const Locale('en')
                ? book.authors!.first.fullNameDecode!.first.firstNameEn! +
                    ' ' +
                    book.authors!.first.fullNameDecode!.last.lastNameEn!
                : book.authors!.first.fullNameDecode!.first.firstNameHe! +
                    ' ' +
                    book.authors!.first.fullNameDecode!.last.lastNameHe!;
Editor is loading...