fromDartListNullableOperationsCursorNullableToGraphQLListNullableOperationsCursorNullable function
- List<
OperationsCursor?> ? v
Implementation
List<String?>?
fromDartListNullableOperationsCursorNullableToGraphQLListNullableOperationsCursorNullable(
List<OperationsCursor?>? v,
) => v
?.map(
(e) =>
fromDartOperationsCursorNullableToGraphQLOperationsCursorNullable(e),
)
.toList();