fromDartListRecentChatsCursorNullableToGraphQLListRecentChatsCursorNullable function

List<String?> fromDartListRecentChatsCursorNullableToGraphQLListRecentChatsCursorNullable(
  1. List<RecentChatsCursor?> v
)

Implementation

List<String?>
fromDartListRecentChatsCursorNullableToGraphQLListRecentChatsCursorNullable(
  List<RecentChatsCursor?> v,
) => v
    .map(
      (e) =>
          fromDartRecentChatsCursorNullableToGraphQLRecentChatsCursorNullable(
            e,
          ),
    )
    .toList();