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