fromGraphQLListNullableChatCallCredentialsNullableToDartListNullableChatCallCredentialsNullable function

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

Implementation

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