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