fromDartListNullableRecentChatsCursorToGraphQLListNullableRecentChatsCursor function
Implementation
List<String>?
fromDartListNullableRecentChatsCursorToGraphQLListNullableRecentChatsCursor(
  List<RecentChatsCursor>? v,
) => v
    ?.map((e) => fromDartRecentChatsCursorToGraphQLRecentChatsCursor(e))
    .toList();