fromGraphQLListChatVersionToDartListChatVersion function
Implementation
List<ChatVersion> fromGraphQLListChatVersionToDartListChatVersion(
List<Object?> v,
) =>
v.map((e) => fromGraphQLChatVersionToDartChatVersion(e as String)).toList();
List<ChatVersion> fromGraphQLListChatVersionToDartListChatVersion(
List<Object?> v,
) =>
v.map((e) => fromGraphQLChatVersionToDartChatVersion(e as String)).toList();