fromGraphQLListChatDirectLinkVersionToDartListChatDirectLinkVersion function

List<ChatDirectLinkVersion> fromGraphQLListChatDirectLinkVersionToDartListChatDirectLinkVersion(
  1. List<Object?> v
)

Implementation

List<ChatDirectLinkVersion>
fromGraphQLListChatDirectLinkVersionToDartListChatDirectLinkVersion(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLChatDirectLinkVersionToDartChatDirectLinkVersion(
        e as String,
      ),
    )
    .toList();