fromDartListChatItemsCursorNullableToGraphQLListChatItemsCursorNullable function

List<String?> fromDartListChatItemsCursorNullableToGraphQLListChatItemsCursorNullable(
  1. List<ChatItemsCursor?> v
)

Implementation

List<String?>
fromDartListChatItemsCursorNullableToGraphQLListChatItemsCursorNullable(
  List<ChatItemsCursor?> v,
) =>
    v
        .map(
          (e) =>
              fromDartChatItemsCursorNullableToGraphQLChatItemsCursorNullable(
                e,
              ),
        )
        .toList();