fromGraphQLListNullableChatCallRoomJoinLinkNullableToDartListNullableChatCallRoomJoinLinkNullable function

List<ChatCallRoomJoinLink?>? fromGraphQLListNullableChatCallRoomJoinLinkNullableToDartListNullableChatCallRoomJoinLinkNullable(
  1. List<Object?>? v
)

Implementation

List<ChatCallRoomJoinLink?>?
fromGraphQLListNullableChatCallRoomJoinLinkNullableToDartListNullableChatCallRoomJoinLinkNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) =>
          fromGraphQLChatCallRoomJoinLinkNullableToDartChatCallRoomJoinLinkNullable(
            e as String?,
          ),
    )
    .toList();