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