fromDartListNullableRecentChatsCursorNullableToGraphQLListNullableRecentChatsCursorNullable function

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

Implementation

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