fromGraphQLListNullableChatContactVersionToDartListNullableChatContactVersion function
Implementation
List<ChatContactVersion>?
fromGraphQLListNullableChatContactVersionToDartListNullableChatContactVersion(
List<Object?>? v,
) => v
?.map(
(e) => fromGraphQLChatContactVersionToDartChatContactVersion(e as String),
)
.toList();