fromDartListNullableRecentChatsCursorNullableToGraphQLListNullableRecentChatsCursorNullable function
- List<RecentChatsCursor?> ? v
Implementation
List<String?>?
fromDartListNullableRecentChatsCursorNullableToGraphQLListNullableRecentChatsCursorNullable(
  List<RecentChatsCursor?>? v,
) => v
    ?.map(
      (e) =>
          fromDartRecentChatsCursorNullableToGraphQLRecentChatsCursorNullable(
            e,
          ),
    )
    .toList();