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