fromGraphQLListNullableOperationsCursorToDartListNullableOperationsCursor function

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

Implementation

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