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