fromGraphQLListChatContactVersionToDartListChatContactVersion function

List<ChatContactVersion> fromGraphQLListChatContactVersionToDartListChatContactVersion(
  1. List<Object?> v
)

Implementation

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