String? findInitials(List<dynamic>? sources) => sources ?.map(initials) .firstWhere((initials) => initials?.isNotEmpty == true);