fromDartListChatCallCredentialsToGraphQLListChatCallCredentials function
Implementation
List<String> fromDartListChatCallCredentialsToGraphQLListChatCallCredentials(
List<ChatCallCredentials> v,
) =>
v
.map((e) => fromDartChatCallCredentialsToGraphQLChatCallCredentials(e))
.toList();