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