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