fromGraphQLListChatItemVersionToDartListChatItemVersion function

List<ChatItemVersion> fromGraphQLListChatItemVersionToDartListChatItemVersion(
  1. List<Object?> v
)

Implementation

List<ChatItemVersion> fromGraphQLListChatItemVersionToDartListChatItemVersion(
  List<Object?> v,
) => v
    .map((e) => fromGraphQLChatItemVersionToDartChatItemVersion(e as String))
    .toList();