fromGraphQLListChatVersionToDartListChatVersion function

List<ChatVersion> fromGraphQLListChatVersionToDartListChatVersion(
  1. List<Object?> v
)

Implementation

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