fromGraphQLListNullableChatCallCredentialsToDartListNullableChatCallCredentials function
Implementation
List<ChatCallCredentials>?
fromGraphQLListNullableChatCallCredentialsToDartListNullableChatCallCredentials(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLChatCallCredentialsToDartChatCallCredentials(
e as String,
),
)
.toList();