fromGraphQLListOperationsCursorToDartListOperationsCursor function

List<OperationsCursor> fromGraphQLListOperationsCursorToDartListOperationsCursor(
  1. List<Object?> v
)

Implementation

List<OperationsCursor>
fromGraphQLListOperationsCursorToDartListOperationsCursor(List<Object?> v) => v
    .map((e) => fromGraphQLOperationsCursorToDartOperationsCursor(e as String))
    .toList();