fromDartListNullableOperationsCursorToGraphQLListNullableOperationsCursor function

List<String>? fromDartListNullableOperationsCursorToGraphQLListNullableOperationsCursor(
  1. List<OperationsCursor>? v
)

Implementation

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