fromDartListNullableChatContactVersionToGraphQLListNullableChatContactVersion function

List<String>? fromDartListNullableChatContactVersionToGraphQLListNullableChatContactVersion(
  1. List<ChatContactVersion>? v
)

Implementation

List<String>?
fromDartListNullableChatContactVersionToGraphQLListNullableChatContactVersion(
  List<ChatContactVersion>? v,
) =>
    v
        ?.map((e) => fromDartChatContactVersionToGraphQLChatContactVersion(e))
        .toList();