fromGraphQLListChatCallCredentialsToDartListChatCallCredentials function

List<ChatCallCredentials> fromGraphQLListChatCallCredentialsToDartListChatCallCredentials(
  1. List<Object?> v
)

Implementation

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