fromDartListOperationsCursorToGraphQLListOperationsCursor function

List<String> fromDartListOperationsCursorToGraphQLListOperationsCursor(
  1. List<OperationsCursor> v
)

Implementation

List<String> fromDartListOperationsCursorToGraphQLListOperationsCursor(
  List<OperationsCursor> v,
) =>
    v.map((e) => fromDartOperationsCursorToGraphQLOperationsCursor(e)).toList();