fromGraphQLListOperationNumNullableToDartListOperationNumNullable function

List<OperationNum?> fromGraphQLListOperationNumNullableToDartListOperationNumNullable(
  1. List<Object?> v
)

Implementation

List<OperationNum?>
fromGraphQLListOperationNumNullableToDartListOperationNumNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLOperationNumNullableToDartOperationNumNullable(e as int?),
    )
    .toList();